diff options
author | Barry Warsaw <barry@python.org> | 2001-02-20 20:53:37 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2001-02-20 20:53:37 (GMT) |
commit | d5221a3791df713e08864f3c611c1f75fed0ed55 (patch) | |
tree | 6daf1259217993b8eeff5484e3268e93e8e2b456 /Demo | |
parent | 8cb82bd5fb91ab45b24d863f89947b67c9839af5 (diff) | |
download | cpython-d5221a3791df713e08864f3c611c1f75fed0ed55.zip cpython-d5221a3791df713e08864f3c611c1f75fed0ed55.tar.gz cpython-d5221a3791df713e08864f3c611c1f75fed0ed55.tar.bz2 |
import.c -> importexc.c
Added `realclean' target.
Diffstat (limited to 'Demo')
-rw-r--r-- | Demo/embed/Makefile | 10 |
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 |