mirror of
https://github.com/pi-hole/dnsmasq.git
synced 2025-12-19 10:18:25 +00:00
23 lines
383 B
Makefile
23 lines
383 B
Makefile
PREFIX?=/usr/local
|
|
BINDIR = ${PREFIX}/sbin
|
|
MANDIR = ${PREFIX}/man
|
|
|
|
SRC = src
|
|
|
|
CFLAGS?= -O2
|
|
|
|
all :
|
|
@cd $(SRC); $(MAKE) dnsmasq
|
|
|
|
clean :
|
|
rm -f *~ */*~ $(SRC)/*.o $(SRC)/dnsmasq core build
|
|
|
|
install : $(SRC)/dnsmasq
|
|
install -d $(DESTDIR)$(BINDIR) -d $(DESTDIR)$(MANDIR)/man8
|
|
install -m 644 dnsmasq.8 $(DESTDIR)$(MANDIR)/man8
|
|
install -m 755 $(SRC)/dnsmasq $(DESTDIR)$(BINDIR)
|
|
|
|
|
|
|
|
|