From 093c2d83c510e956ba0de09d9a28e57521134c74 Mon Sep 17 00:00:00 2001 From: Simon Budig Date: Thu, 22 Jan 2009 23:47:28 +0100 Subject: [PATCH] Small makefile tweaks --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 7015af9..07348c9 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ all: mquery mhttp -mhttp: mhttp.c - gcc -g -o mhttp mhttp.c mdnsd.c 1035.c sdtxt.c xht.c +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 -mquery: mquery.c - gcc -g -o mquery mquery.c mdnsd.c 1035.c +mquery: mquery.c mdnsd.c 1035.c sdtxt.c xht.c + $(CC) -Wall -Wno-pointer-sign -g -o mquery mquery.c mdnsd.c 1035.c sdtxt.c xht.c clean: rm -f mquery mhttp -- 2.39.2