10 lines
88 B
Makefile
10 lines
88 B
Makefile
|
all:
|
||
|
cd src && make all && cp ndppd ..
|
||
|
|
||
|
clean:
|
||
|
rm -f ndppd
|
||
|
cd src && make clean
|
||
|
|
||
|
|
||
|
|