From c2a83fe13f5897df5c5ac56ea9b2631268a0937f Mon Sep 17 00:00:00 2001 From: Wojciech Kosior Date: Thu, 7 May 2020 01:30:52 +0200 Subject: rename program: receive -> receive_respond --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 7601317..cfe224c 100644 --- a/Makefile +++ b/Makefile @@ -7,16 +7,16 @@ CFLAGS = -std=c99 -Wall -Werror build/0tDNS.o : src/0tDNS.c | build gcc $(CFLAGS) $^ -c -o $@ -receive : build/receive.o +receive_respond : build/receive_respond.o $(CC) $^ -lldns -o $@ -build/receive.o : src/receive.c | build +build/receive_respond.o : src/receive_respond.c | build gcc $(CFLAGS) $^ -c -o $@ build : mkdir build clean : - -rm -r build 0tDNS receive + -rm -r build 0tDNS receive_respond .PHONY : clean -- cgit v1.2.3