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