diff options
Diffstat (limited to 'src/net_unix/Makefile')
| -rw-r--r-- | src/net_unix/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/net_unix/Makefile b/src/net_unix/Makefile index 648ca88..d13af8e 100644 --- a/src/net_unix/Makefile +++ b/src/net_unix/Makefile @@ -1,6 +1,9 @@ -all: udp.o +all: udp.o dns.o + +dns.o: dns.c dns.h + $(CC) $(CFLAGS) -o dns.o -c dns.c udp.o: udp.c udp.h $(CC) $(CFLAGS) -o udp.o -c udp.c |