diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-07 21:41:53 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-07 21:41:53 +0100 |
commit | 06a863cfb689d5a34301d5a60e5d7951d2767c74 (patch) | |
tree | 7ccd3806d4b8ea3d0dc985e70e4411a28d354b0b /src/Makefile | |
parent | Remove unused code (diff) | |
download | redshift-ng-06a863cfb689d5a34301d5a60e5d7951d2767c74.tar.gz redshift-ng-06a863cfb689d5a34301d5a60e5d7951d2767c74.tar.bz2 redshift-ng-06a863cfb689d5a34301d5a60e5d7951d2767c74.tar.xz |
Use libred to calculate the solar elevation
Signed-off-by: Mattias Andrée <m@maandree.se>
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)"' |