syndicate-2017/examples/netstack/incremental-highlevel/Makefile

13 lines
195 B
Makefile
Raw Normal View History

2016-01-24 01:12:05 +00:00
all:
run:
2016-01-28 03:06:24 +00:00
raco make main.rkt && racket main.rkt
2016-01-24 01:12:05 +00:00
clean:
find . -name compiled -type d | xargs rm -rf
rm -f cpingresp
cpingresp: cpingresp.c
$(CC) -o $@ $<
sudo setcap cap_net_raw+p+i+e $@