diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-05 16:38:44 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-05 16:38:44 +0100 |
commit | 844a48da2d670be95a62a582aab73ad8145040e2 (patch) | |
tree | 1c20cd1646706d6af03bce48822568c5602a8616 /src/Makefile | |
parent | Use colour temperature table from libred (diff) | |
download | redshift-ng-844a48da2d670be95a62a582aab73ad8145040e2.tar.gz redshift-ng-844a48da2d670be95a62a582aab73ad8145040e2.tar.bz2 redshift-ng-844a48da2d670be95a62a582aab73ad8145040e2.tar.xz |
Unify header files (so far most)
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index c906e20..b2841d3 100644 --- a/src/Makefile +++ b/src/Makefile @@ -3,6 +3,7 @@ CONFIGFILE = config.mk include $(CONFIGFILE) + OBJ =\ colorramp.o\ config-ini.o\ @@ -21,10 +22,16 @@ OBJ =\ solar.o\ systemtime.o -HDR = $(OBJ:.o=.h) +HDR =\ + common.h\ + solar.h\ + redshift.h\ + options.h\ + config-ini.h PACKAGE_STRING = redshift-ng 1.13 + all: redshift $(OBJ): $(HDR) |