diff options
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/Makefile b/src/Makefile index 25c1568..9ab321c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -4,6 +4,9 @@ CONFIGFILE = config.mk include $(CONFIGFILE) +PACKAGE_STRING = redshift-ng 1.13 + + OBJ =\ colorramp.o\ config-ini.o\ @@ -19,18 +22,11 @@ OBJ =\ pipeutils.o\ redshift.o\ signals.o\ - solar.o\ systemtime.o -HDR =\ - common.h\ - solar.h - -PACKAGE_STRING = redshift-ng 1.13 - all: redshift -$(OBJ): $(HDR) +$(OBJ): common.h .c.o: $(CC) -c -o $@ $< $(CFLAGS) $(CPPFLAGS) -D'PACKAGE_STRING="$(PACKAGE_STRING)"' |