mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-13 10:02:38 +00:00
da2f954c96
the default shell. Idea from: DragonFlyBSD
8 lines
149 B
Makefile
8 lines
149 B
Makefile
# $FreeBSD$
|
|
# a very simple makefile...
|
|
pmake:
|
|
@echo 'make started.'
|
|
cc -DDEFSHELLNAME=\"sh\" -I. -c *.c
|
|
cc *.o -o pmake
|
|
@echo 'make completed.'
|