www/Makefile

Thu, 16 Aug 2018 16:01:13 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Thu, 16 Aug 2018 16:01:13 +0200
changeset 18
395833e20f88
parent 10
606b4af8f918
child 23
4b157d7a1cee
permissions
-rw-r--r--

Better error messages in syslog

# Makefile for the bms webserver
# Copyright (c) 2018 by M. Broek.

include ../Makefile.global

SRC		= getfermenter.php  getfermenters.php  \
		  getnode.php getnodes.php config.php.dist index.php \
		  inv_suppliers.php inv_fermentables.php inv_hops.php inv_yeasts.php \
		  mon_brewer.php mon_fermenter.php mon_node.php
SUB		= version.php.in images/* css/* jqwidgets/* jqwidgets/styles/* \
		  jqwidgets/styles/images/* jqwidgets/globalization/* js/* \
		  includes/*
OTHER		= Makefile

#############################################################################

.c.o:
		${CC} ${CFLAGS} ${INCLUDES} ${DEFINES} -c $<

all:

clean:
		rm -f version.php

install:
		${INSTALL} -d -g 314 -o 314 ${PREFIX} ${WWWDIR} ${WWWDIR}/css \
			${WWWDIR}/jqwidgets ${WWWDIR}/js ${WWWDIR}/images/
		${INSTALL} -g 314 -o 314 ${SRC} ${WWWDIR}/
		${INSTALL} -g 314 -o 314 version.php ${WWWDIR}/
		${INSTALL} -g 314 -o 314 css/* ${WWWDIR}/css/
		${INSTALL} -g 314 -o 314 images/* ${WWWDIR}/images/
		cp -r jqwidgets/* ${WWWDIR}/jqwidgets/
		chown -R 314:314 ${WWWDIR}/jqwidgets
		${INSTALL} -g 314 -o 314 js/* ${WWWDIR}/js/

filelist:	Makefile
		BASE=`pwd`; \
		BASE=`basename $${BASE}`; \
		(for f in ${SRC} ${SUB} ${OTHER} ;do echo ${PACKAGE}-${VERSION}/$${BASE}/$$f; done) >filelist

depend:

mercurial