1# $FreeBSD$
2# a simple makefile to help builds on !FreeBSD systems
3pmake:
4	@echo 'make started.'
5	cc -D__dead2="" -D__unused="" -Darc4random=random -D__FBSDID="static const char *id=" -DDEFSHELLNAME=\"sh\" -I. -c *.c
6	cc *.o -o pmake
7	@echo 'make completed.'
8
9clean:
10	@rm -f *.o pmake
11