view Makefile @ 108:786b7b768819 draft default git/master tip master

Update copyright line
author HIROSE Yuuji <yuuji@gentei.org>
date Wed, 05 Apr 2023 10:42:43 +0859
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