import.c -> importexc.c
Added `realclean' target.
diff --git a/Demo/embed/Makefile b/Demo/embed/Makefile
index 0a4b434..ebc274f 100644
--- a/Demo/embed/Makefile
+++ b/Demo/embed/Makefile
@@ -28,15 +28,15 @@
ALLLIBS= $(LIBPYTHON) $(MODLIBS) $(LIBS) $(SYSLIBS)
# Build the demo application
-all: demo loop import
+all: demo loop importexc
demo: demo.o
$(CC) $(LDFLAGS) demo.o $(ALLLIBS) -o demo
loop: loop.o
$(CC) $(LDFLAGS) loop.o $(ALLLIBS) -o loop
-import: import.o
- $(CC) $(LDFLAGS) import.o $(ALLLIBS) -o import
+importexc: importexc.o
+ $(CC) $(LDFLAGS) importexc.o $(ALLLIBS) -o importexc
# Administrative targets
@@ -51,4 +51,6 @@
-rm -f *.o core
clobber: clean
- -rm -f *~ @* '#'* demo loop import
+ -rm -f *~ @* '#'* demo loop importexc
+
+realclean: clobber