Kaydet (Commit) e98626d9 authored tarafından Barry Warsaw's avatar Barry Warsaw

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

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