Update the pipeline to produce a tarball of the source upon every commit.
[open-adventure.git] / Makefile
index f023b0e096e72ee90576a6785a4e713ba2cd4745..4685fa4c54ecdd46e0c35355271c1efe8629b798 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -10,14 +10,14 @@ ifeq ($(UNAME_S),Linux)
        LIBS=-lrt
 endif
 
-OBJS=main.o init.o actions1.o actions2.o score.o misc.o database.o
-SOURCES=$(OBJS:.o=.c) compile.c advent.h database.h funcs.h adventure.text Makefile control
+OBJS=main.o init.o actions1.o actions2.o score.o misc.o
+SOURCES=$(OBJS:.o=.c) compile.c advent.h funcs.h adventure.text Makefile control
 
 .c.o:
        $(CC) $(CCFLAGS) $(DBX) -c $<
 
 advent:        $(OBJS) database.o
-       $(CC) $(CCFLAGS) $(DBX) -o advent $(OBJS) $(LDFLAGS) $(LIBS)
+       $(CC) $(CCFLAGS) $(DBX) -o advent $(OBJS) database.o $(LDFLAGS) $(LIBS)
 
 main.o:                advent.h funcs.h database.h
 
@@ -33,8 +33,6 @@ misc.o:               advent.h database.h
 
 database.o:    database.h
 
-funcs.h:       database.h
-
 compile: compile.c
        $(CC) $(CCFLAGS) -o $@ $<
 
@@ -46,7 +44,7 @@ html: index.html advent.html history.html hints.html
 
 clean:
        rm -f *.o advent *.html database.[ch] compile *.gcno *.gcda
-       rm -f README advent.6
+       rm -f README advent.6 MANIFEST
        cd tests; $(MAKE) --quiet clean
 
 check: advent
@@ -66,8 +64,12 @@ check: advent
 DOCS=COPYING NEWS README.adoc TODO \
        advent.adoc history.adoc index.adoc hints.adoc advent.6
 
+# Can't use GNU tar's --transform, needs to build under Alpine Linux
 advent-$(VERS).tar.gz: $(SOURCES) $(DOCS)
-       tar --transform='s:^:advent-$(VERS)/:' --show-transformed-names -cvzf advent-$(VERS).tar.gz $(SOURCES) $(DOCS)
+       @ls $(SOURCES) $(DOCS) | sed s:^:advent-$(VERS)/: >MANIFEST
+       @(ln -s . advent-$(VERS))
+       (tar -T MANIFEST -czvf advent-$(VERS).tar.gz)
+       @(rm advent-$(VERS))
 
 dist: advent-$(VERS).tar.gz