mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 12:18:42 +00:00
8 lines
72 B
Makefile
8 lines
72 B
Makefile
|
all: ips
|
||
|
|
||
|
ips: ips.c
|
||
|
gcc ips.c -o ips -lm -O2 -Wall
|
||
|
|
||
|
clean:
|
||
|
rm -f ips
|