mirror of
https://github.com/opnsense/src.git
synced 2026-02-18 01:59:01 -05:00
10 lines
238 B
Makefile
10 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
|