diff -r 37f1a08315f3 -r 282e7d2bb28a www/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/www/Makefile Tue Aug 07 16:42:49 2018 +0200 @@ -0,0 +1,27 @@ +# Makefile for the bms webserver +# Copyright (c) 2018 by M. Broek. + +include ../Makefile.global + +SRC = version.php.in index.php +OTHER = Makefile + +############################################################################# + +.c.o: + ${CC} ${CFLAGS} ${INCLUDES} ${DEFINES} -c $< + +all: + +clean: + rm -f version.php + +install: + +filelist: Makefile + BASE=`pwd`; \ + BASE=`basename $${BASE}`; \ + (for f in ${SRC} ${OTHER} ;do echo ${PACKAGE}-${VERSION}/$${BASE}/$$f; done) >filelist + +depend: +