Added wget make target which produces a single file Contiki binary with RR-Net driver and wget app
diff --git a/contiki-c64/Makefile b/contiki-c64/Makefile
index 14c0c26..8f98318 100644
--- a/contiki-c64/Makefile
+++ b/contiki-c64/Makefile
@@ -30,7 +30,7 @@
 #
 # This file is part of the Contiki desktop environment
 #
-# $Id: Makefile,v 1.7 2003/07/30 22:48:49 adamdunkels Exp $
+# $Id: Makefile,v 1.8 2003/09/04 22:00:18 adamdunkels Exp $
 #
 
 CONTIKI=../contiki
@@ -54,7 +54,11 @@
 c64:
 	$(MAKE) CONTIKI=$(CONTIKI) CONTIKICC65=$(CONTIKICC65) -f Makefile.c64
 
-CCDEPFLAGS=-D__CBM__ -D__C64__ -DCTK_HIRES
+wget:
+	$(MAKE) CONTIKI=$(CONTIKI) CONTIKICC65=$(CONTIKICC65) -f Makefile.c64-wget
+
+
+CCDEPFLAGS=-D__CBM__ -D__C64__ -DCTK_HIRES -DWITH_UIP -DWITH_LOADER_ARCH -I/usr/local/lib/cc65/include
 
 include $(CONTIKICC65)/Makefile.common