mirror of
https://github.com/pi-hole/dnsmasq.git
synced 2025-12-19 10:18:25 +00:00
8 lines
148 B
Makefile
8 lines
148 B
Makefile
CFLAGS?= -O2
|
|
|
|
all: dhcp_release.c
|
|
$(CC) $(CFLAGS) $(RPM_OPT_FLAGS) -Wall -W dhcp_release.c -o dhcp_release
|
|
|
|
clean:
|
|
rm -f *~ *.o core dhcp_release
|