home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
misc
/
volume29
/
regex-glob
/
part01
/
Makefile
next >
Wrap
Makefile
|
1992-04-06
|
446b
|
23 lines
# Makefile by vixie@decwrl, 9-mar-92
DESTROOT =
DESTSYS = ${DESTROOT}/usr/localsys
DESTSHR = ${DESTROOT}/usr/localshr
DESTINC = ${DESTSHR}/include
DESTLIB = ${DESTSYS}/lib
all: match.h libmatch.a
clean:
rm -f *.CKP *.BAK *~ *.o
rm -f libmatch.a
install: all
install -c match.h ${DESTINC}/match.h
install -c libmatch.a ${DESTLIB}/libmatch.a
libmatch.a: match.h match.c
${CC} -c ${CFLAGS} match.c
rm -f libmatch.a
mv match.o libmatch.a