aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
new file mode 100644
index 0000000..c906e20
--- /dev/null
+++ b/src/Makefile
@@ -0,0 +1,54 @@
+.POSIX:
+
+CONFIGFILE = config.mk
+include $(CONFIGFILE)
+
+OBJ =\
+ colorramp.o\
+ config-ini.o\
+ gamma-coopgamma.o\
+ gamma-drm.o\
+ gamma-dummy.o\
+ gamma-randr.o\
+ gamma-vidmode.o\
+ hooks.o\
+ location-geoclue2.o\
+ location-manual.o\
+ options.o\
+ pipeutils.o\
+ redshift.o\
+ signals.o\
+ solar.o\
+ systemtime.o
+
+HDR = $(OBJ:.o=.h)
+
+PACKAGE_STRING = redshift-ng 1.13
+
+all: redshift
+$(OBJ): $(HDR)
+
+.c.o:
+ $(CC) -c -o $@ $< $(CFLAGS) $(CPPFLAGS) -D'PACKAGE_STRING="$(PACKAGE_STRING)"'
+
+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