Commit e98626d9 authored by Barry Warsaw's avatar Barry Warsaw

Add targets to make building `loop' and `import' easier. Useful for

debugging memory leaks and the like.
parent 30dbd142
......@@ -28,13 +28,16 @@ MODLIBS=
ALLLIBS= $(LIBPYTHON) $(MODLIBS) $(LIBS) $(SYSLIBS)
# Build the demo application
all: demo
all: demo loop import
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
# Administrative targets
test: demo
......@@ -48,4 +51,4 @@ clean:
-rm -f *.o core
clobber: clean
-rm -f *~ @* '#'* demo loop
-rm -f *~ @* '#'* demo loop import
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