summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2001-02-20 20:53:37 (GMT)
committerBarry Warsaw <barry@python.org>2001-02-20 20:53:37 (GMT)
commitd5221a3791df713e08864f3c611c1f75fed0ed55 (patch)
tree6daf1259217993b8eeff5484e3268e93e8e2b456
parent8cb82bd5fb91ab45b24d863f89947b67c9839af5 (diff)
downloadcpython-d5221a3791df713e08864f3c611c1f75fed0ed55.zip
cpython-d5221a3791df713e08864f3c611c1f75fed0ed55.tar.gz
cpython-d5221a3791df713e08864f3c611c1f75fed0ed55.tar.bz2
import.c -> importexc.c
Added `realclean' target.
-rw-r--r--Demo/embed/Makefile10
1 files changed, 6 insertions, 4 deletions
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 @@ MODLIBS=
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 @@ clean:
-rm -f *.o core
clobber: clean
- -rm -f *~ @* '#'* demo loop import
+ -rm -f *~ @* '#'* demo loop importexc
+
+realclean: clobber