mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
17 lines
273 B
Makefile
17 lines
273 B
Makefile
ED= ../obj/ed
|
|
|
|
all: build test
|
|
@echo done
|
|
|
|
build: mkscripts.sh
|
|
@echo building test scripts...
|
|
@chmod +x mkscripts.sh
|
|
@mkscripts.sh ${ED}
|
|
|
|
test: build ckscripts.sh
|
|
@echo running test scripts...
|
|
@chmod +x ckscripts.sh
|
|
@ckscripts.sh ${ED}
|
|
|
|
clean:
|
|
rm -f *.ed *.[oz] *~
|