X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=Makefile;h=ef00f50cffdec1fdf36b24f8fa0f4b5f0adb8035;hb=eefbddd33850c724d7b5a07b484b00d0b6821961;hp=f5c34af7b590145c99d3a8ced9b2badfd7179048;hpb=5b1c780d1a3e02a6f64242ef5d8c0a2dc71de3ec;p=dss.git diff --git a/Makefile b/Makefile index f5c34af..ef00f50 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,11 @@ +# SPDX-License-Identifier: GPL-2.0 PREFIX ?= /usr/local INSTALL ?= install INSTALL_PROGRAM ?= $(INSTALL) INSTALL_DATA ?= $(INSTALL) -m 644 MKDIR_P := mkdir -p -VERSION_STRING = 0.1.7 +VERSION_STRING = 1.0.0 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 @@ -37,9 +38,6 @@ dss: $(dss_objects) %.o: %.c Makefile $(CC) -c $(DSS_CPPFLAGS) $(CPPFLAGS) $(DSS_CFLAGS) $(CFLAGS) $< -dss.png: mklogo - ./mklogo > $@ - %.lsg.h: %.suite lopsubgen --gen-h=$@ < $< %.lsg.c: %.suite @@ -51,7 +49,7 @@ dss.png: mklogo groff -m man -Thtml -P -l -P -r $< | sed -e '1,/^/d; /^<\/body>/,$$d' > $@ clean: - rm -f *.o dss dss.1 dss.1.html Makefile.deps *.png *~ index.html dss.lsg.h dss.lsg.c + rm -f *.o dss dss.1 dss.1.html Makefile.deps *~ index.html dss.lsg.h dss.lsg.c ifneq ($(findstring strip, $(MAKECMDGOALS)),) strip_option := -s