www/Makefile

changeset 2
282e7d2bb28a
child 4
1750b6cae48e
equal deleted inserted replaced
1:37f1a08315f3 2:282e7d2bb28a
1 # Makefile for the bms webserver
2 # Copyright (c) 2018 by M. Broek.
3
4 include ../Makefile.global
5
6 SRC = version.php.in index.php
7 OTHER = Makefile
8
9 #############################################################################
10
11 .c.o:
12 ${CC} ${CFLAGS} ${INCLUDES} ${DEFINES} -c $<
13
14 all:
15
16 clean:
17 rm -f version.php
18
19 install:
20
21 filelist: Makefile
22 BASE=`pwd`; \
23 BASE=`basename $${BASE}`; \
24 (for f in ${SRC} ${OTHER} ;do echo ${PACKAGE}-${VERSION}/$${BASE}/$$f; done) >filelist
25
26 depend:
27

mercurial