]> git.tuebingen.mpg.de Git - dss.git/blobdiff - Makefile
Make the build quiet by default.
[dss.git] / Makefile
index d27b9cd3bb686d05269d8024c19743970538aabd..40f40e497befc45593cd23b6201330081f4318a2 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,21 @@
+# SPDX-License-Identifier: GPL-2.0
 PREFIX ?= /usr/local
 INSTALL ?= install
 INSTALL_PROGRAM ?= $(INSTALL)
 INSTALL_DATA ?= $(INSTALL) -m 644
 MKDIR_P := mkdir -p
+VERSION := $(shell ./version-gen.sh dss version.c)
 
-VERSION_STRING = 0.1.7
+units := dss str file exec sig daemon df tv snap ipc dss.lsg version
+objs := $(addsuffix .o, $(units))
+deps := $(addsuffix .d, $(units))
 
-dss_objects := dss.o str.o file.o exec.o sig.o daemon.o df.o tv.o snap.o ipc.o dss.lsg.o
 all: dss dss.1
 man: dss.1
+$(objs): dss.lsg.h Makefile
+-include $(deps)
+
+DSS_CPPFLAGS += -Wunused-macros
 
 DSS_CFLAGS := -Wno-sign-compare -g -Wunused -Wundef
 DSS_CFLAGS += -Wredundant-decls
@@ -19,37 +26,42 @@ DSS_CFLAGS += -Wchar-subscripts
 DSS_CFLAGS += -Wformat-security
 DSS_CFLAGS += -Werror-implicit-function-declaration
 DSS_CFLAGS += -Wmissing-format-attribute
-DSS_CFLAGS += -Wunused-macros
 DSS_CFLAGS += -Wunused-parameter
 DSS_CFLAGS += -Wbad-function-cast
 DSS_CFLAGS += -Wshadow
 
-Makefile.deps: $(wildcard *.c *.h)
-       $(CC) -MM -MG $(DSS_CFLAGS) $(CFLAGS) *.c > $@
-
--include Makefile.deps
-
-dss: $(dss_objects)
-       $(CC) -o $@ $(dss_objects) $(LDFLAGS) -llopsub
-
-%.o: %.c Makefile
-       $(CC) -c -DVERSION_STRING='"$(VERSION_STRING)"' $(DSS_CFLAGS) $(CFLAGS) $<
-
-%.png: %.dia
-       dia -e $@ -t png $<
-
+.ONESHELL:
+.SHELLFLAGS := -ec
+ifeq ("$(origin V)", "command line")
+       SAY =
+else
+       SAY = @printf '%s\n' '$(strip $(1))'
+endif
+version.c:
+       $(call SAY, VG $@)
+       ./version-gen.sh dss version.c > /dev/null
+dss: $(objs)
+       $(call SAY, LD $@)
+       $(CC) -o $@ $(objs) $(LDFLAGS) -llopsub
+%.o: %.c
+       $(call SAY, CC $<)
+       $(CC) -c -o $@ $(DSS_CPPFLAGS) $(CPPFLAGS) $(DSS_CFLAGS) $(CFLAGS) \
+               -MMD -MF $(*F).d -MT $@ $<
 %.lsg.h: %.suite
+       $(call SAY, LSGH $<)
        lopsubgen --gen-h=$@ < $<
 %.lsg.c: %.suite
+       $(call SAY, LSGC $<)
        lopsubgen --gen-c=$@ < $<
 %.1: %.suite
-       lopsubgen --gen-man=$@ --version-string=$(VERSION_STRING) < $<
-
+       $(call SAY, LSGM $<)
+       lopsubgen --gen-man=$@ --version-string=$(VERSION) < $<
 %.1.html: %.1
+       $(call SAY, GROFF $<)
        groff -m man -Thtml -P -l -P -r $< | sed -e '1,/^<body>/d; /^<\/body>/,$$d' > $@
-
 clean:
-       rm -f *.o dss dss.1 dss.1.html Makefile.deps *.png *~ index.html dss.lsg.h dss.lsg.c
+       $(call SAY, CLEAN)
+       rm -f *.[od] dss dss.1 *.html dss.lsg.[ch] version.c
 
 ifneq ($(findstring strip, $(MAKECMDGOALS)),)
        strip_option := -s
@@ -71,3 +83,5 @@ index.html: dss.1.html index.html.in INSTALL README NEWS
        sed -e '1,/@INSTALL@/d' -e '/@MAN_PAGE@/,$$d' index.html.in >> $@
        cat dss.1.html >> $@
        sed -e '1,/@MAN_PAGE@/d' index.html.in >> $@
+
+-include Makefile.local