From de2a1268e6e137c7b3880f8a3bcb039bd07c937d Mon Sep 17 00:00:00 2001 From: Ole Reinhardt Date: Mon, 29 Apr 2013 01:38:44 +0200 Subject: [PATCH] Added netwatch to the Makefile --- Makefile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 07348c9..735aed2 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,13 @@ -all: mquery mhttp +all: mhttp mquery netwatch mhttp: mhttp.c mdnsd.c 1035.c sdtxt.c xht.c - $(CC) -Wall -Wno-pointer-sign -g -o mhttp mhttp.c mdnsd.c 1035.c sdtxt.c xht.c + $(CC) -Wall -Wno-pointer-sign -g -o mhttp mhttp.c mdnsd.c 1035.c sdtxt.c xht.c netwatch.c -mquery: mquery.c mdnsd.c 1035.c sdtxt.c xht.c +mquery: mquery.c mdnsd.c 1035.c $(CC) -Wall -Wno-pointer-sign -g -o mquery mquery.c mdnsd.c 1035.c sdtxt.c xht.c +netwatch: netwatch.c + $(CC) -Wall -DNETWATCH_MAIN -g -o $@ $< + clean: - rm -f mquery mhttp + rm -f mquery mhttp netwatch -- 2.39.2