11 lines
238 B
Makefile
11 lines
238 B
Makefile
# $FreeBSD$
|
|
# a simple makefile to help builds on !FreeBSD systems
|
|
pmake:
|
|
@echo 'make started.'
|
|
cc -D__FBSDID="static const char *id=" -DDEFSHELLNAME=\"sh\" -I. -c *.c
|
|
cc *.o -o pmake
|
|
@echo 'make completed.'
|
|
|
|
clean:
|
|
@rm -f *.o pmake
|