2001-03-01 06:26:32 +00:00
|
|
|
# $FreeBSD$
|
2007-12-09 16:48:51 +00:00
|
|
|
# a simple makefile to help builds on !FreeBSD systems
|
1994-05-27 12:33:43 +00:00
|
|
|
pmake:
|
|
|
|
@echo 'make started.'
|
2008-03-04 05:35:27 +00:00
|
|
|
cc -D__dead2="" -D__unused="" -Darc4random=random -D__FBSDID="static const char *id=" -DDEFSHELLNAME=\"sh\" -I. -c *.c
|
2005-02-01 15:28:41 +00:00
|
|
|
cc *.o -o pmake
|
1994-05-27 12:33:43 +00:00
|
|
|
@echo 'make completed.'
|
2007-12-09 16:48:51 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
@rm -f *.o pmake
|