mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
8 lines
155 B
Makefile
8 lines
155 B
Makefile
|
|
# a very simple makefile...
|
||
|
|
pmake:
|
||
|
|
@echo 'make started.'
|
||
|
|
cc -I. -c *.c
|
||
|
|
cd lst.lib; cc -I.. -c *.c
|
||
|
|
cc *.o lst.lib/*.o -o pmake
|
||
|
|
@echo 'make completed.'
|