www/Makefile

Tue, 07 Aug 2018 16:42:49 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Tue, 07 Aug 2018 16:42:49 +0200
changeset 2
282e7d2bb28a
child 4
1750b6cae48e
permissions
-rw-r--r--

Initial web server

# 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:

mercurial