Makefile.am 394B

123456789
  1. bin_PROGRAMS = light
  2. light_SOURCES = main.c light.c light.h helpers.c helpers.h impl/sysfs.c impl/sysfs.h impl/util.h impl/util.c impl/razer.h impl/razer.c
  3. light_CPPFLAGS = -I../include -D_GNU_SOURCE
  4. light_CFLAGS = -W -Wall -Wextra -std=gnu99 -Wno-type-limits -Wno-format-truncation -Wno-unused-parameter -fcommon
  5. if CLASSIC
  6. install-exec-hook:
  7. chmod 6755 $(DESTDIR)$(bindir)/light
  8. endif