view Makefile @ 98:5e30d1645411 draft

Enclose checkbutton with label element
author HIROSE Yuuji <yuuji@gentei.org>
date Wed, 21 Aug 2019 10:02:12 +0900
parents eab5481212e0
children
line wrap: on
line source

#
# makefile for after5 cgi wrapper
#

CC	= gcc
VERSION	= `head after5.cgi|awk '/Id:/{print $$4}'`
PNAME	= after5-${VERSION}
TMPDIR	= /tmp
PFILE	= ${TMPDIR}/${PNAME}.tar.gz

FILES	= a5.c Makefile after5.cgi after5.css after5.png after5.rb \
	  holiday
GTAR	= gtar
HG	= hg

a5.cgi:	a5.c
	${CC} -o a5.cgi a5.c
	chmod u+s a5.cgi

package:
	${HG} archive -t tgz -X '.*' ${PFILE}
	-@ls -l ${PFILE}

yatex.org