db18a02be9
sys/cdef.h-isms in the make source. The variant of linux I tried it on doesn't have arc4random, so -Darc4random=random too.
11 lines
285 B
Makefile
11 lines
285 B
Makefile
# $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
|