diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-27 18:36:26 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-27 18:36:26 +0100 |
commit | 037b945a9f253b97faffc02d8475574e75203516 (patch) | |
tree | b008e7d77e9daaeaaa8e7854728d715df5aafb77 /redshift/Makefile | |
parent | todo list housekeeping (diff) | |
download | redshift-ng-037b945a9f253b97faffc02d8475574e75203516.tar.gz redshift-ng-037b945a9f253b97faffc02d8475574e75203516.tar.bz2 redshift-ng-037b945a9f253b97faffc02d8475574e75203516.tar.xz |
one dir per subproject
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'redshift/Makefile')
-rw-r--r-- | redshift/Makefile | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/redshift/Makefile b/redshift/Makefile new file mode 100644 index 0000000..417d001 --- /dev/null +++ b/redshift/Makefile @@ -0,0 +1,66 @@ +.POSIX: + +CONFIGFILE = config.mk +include $(CONFIGFILE) + + +VERSION_STRING = redshift-ng 1.13 + + +OBJ =\ + backend-direct.o\ + colour.o\ + config.o\ + config-ini.o\ + gamma.o\ + gamma-coopgamma.o\ + gamma-drm.o\ + gamma-dummy.o\ + gamma-quartz.o\ + gamma-randr.o\ + gamma-vidmode.o\ + gamma-wingdi.o\ + hooks.o\ + location.o\ + location-geoclue2.o\ + location-manual.o\ + location-geofile.o\ + location-timezone.o\ + redshift.o\ + signals.o\ + util.o + + +CPPFLAGS_STRINGS =\ + -D'PACKAGE="$(PACKAGE)"'\ + -D'VERSION_STRING="$(VERSION_STRING)"'\ + -D'LOCALEDIR="$(LOCALEDIR)"' + + +all: redshift +$(OBJ): common.h arg.h + +.c.o: + $(CC) -c -o $@ $< $(CFLAGS) $(CPPFLAGS) $(CPPFLAGS_STRINGS) + +redshift: $(OBJ) + $(CC) -o $@ $(OBJ) $(LDFLAGS) + +install: redshift + mkdir -p -- "$(DESTDIR)$(PREFIX)/bin" + mkdir -p -- "$(DESTDIR)$(MANPREFIX)/man1/" + cp -- redshift "$(DESTDIR)$(PREFIX)/bin/" + cp -- redshift.1 "$(DESTDIR)$(MANPREFIX)/man1/" + +uninstall: + -rm -f -- "$(DESTDIR)$(PREFIX)/bin/redshift" + -rm -f -- "$(DESTDIR)$(MANPREFIX)/man1/redshift.1" + +clean: + -rm -f -- *.o *.a *.lo *.su + -rm -f -- redshift + +.SUFFIXES: +.SUFFIXES: .o .c + +.PHONY: all install uninstall clean |