htget: add to 6809 makefile
authorBrett Gordon <beretta42@gmail.com>
Sat, 11 Nov 2017 20:27:19 +0000 (15:27 -0500)
committerBrett Gordon <beretta42@gmail.com>
Sat, 11 Nov 2017 20:27:19 +0000 (15:27 -0500)
Applications/netd/Makefile.6809

index 78d91fc..d5be017 100644 (file)
@@ -18,6 +18,7 @@ CRT0 = ../../Library/libs/crt0_6809.o
 
 SRCS  = netd.c uip.c uiplib.c timer.c clock-arch.c uip_arp.c telnet.c lwwire.c
 SRCS += echoping.c dig.c gethostbyname.c httpd.c coconic.c ping.c ntpdate.c
+SRCS += htget.c
 
 OBJS = $(SRCS:.c=.o)
 
@@ -35,7 +36,7 @@ netd: $(OBJS)
        $(LINKER) $(LINKER_OPT) -o httpd $(CRT0) httpd.o
        $(LINKER) $(LINKER_OPT) -o ping $(CRT0) ping.o gethostbyname.o
        $(LINKER) $(LINKER_OPT) -o ntpdate $(CRT0) ntpdate.o gethostbyname.o
-
+       $(LINKER) $(LINKER_OPT) -o htget $(CRT0) htget.o gethostbyname.o
 
 
 size.report: $(APPS)