1
0
mirror of git://projects.qi-hardware.com/wernermisc.git synced 2025-04-21 12:27:27 +03:00

qpkg: added simple regression test for red-black trees

This commit is contained in:
Werner Almesberger
2010-11-19 19:33:05 -03:00
parent 2787a45c43
commit b4ff969a24
2 changed files with 43 additions and 3 deletions

View File

@@ -2,11 +2,14 @@ CFLAGS = -Wall -Wshadow -g -O
# -O, so that we get data flow analysis, which helps to find more bugs
#LDFLAGS=-pg
OBJS = gobble.o id.o prereq.o qpkg.o jrb.o jval.o
OBJS = gobble.o id.o prereq.o qpkg.o
OBJS_rbtest = rbtest.o jrb.o jval.o
all: qpkg
all: qpkg rbtest
qpkg: $(OBJS)
rbtest: $(OBJS_rbtest)
clean:
rm -f $(OBJS)
rm -f $(OBJS) $(OBJS_rbtest)