Commit d5221a37 authored by Barry Warsaw's avatar Barry Warsaw

import.c -> importexc.c

Added `realclean' target.
parent 8cb82bd5
......@@ -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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment