Index: trunk/tests/Makefile =================================================================== --- trunk/tests/Makefile (revision 27533) +++ trunk/tests/Makefile (revision 27534) @@ -8,6 +8,7 @@ cd propedit && $(MAKE) all && $(MAKE) test cd remote && $(MAKE) all && $(MAKE) test cd drc_pstk_hbrk && $(MAKE) all && $(MAKE) test + cd librnd && $(MAKE) all && $(MAKE) test # cd gsch2pcb-rnd && $(MAKE) all && $(MAKE) test @echo " " @echo "+-------------------------------------------------+" @@ -24,5 +25,6 @@ cd propedit && $(MAKE) clean cd remote && $(MAKE) clean cd drc_pstk_hbrk && $(MAKE) clean + cd librnd && $(MAKE) clean # cd gsch2pcb-rnd && $(MAKE) clean Index: trunk/tests/librnd/Makefile =================================================================== --- trunk/tests/librnd/Makefile (revision 27533) +++ trunk/tests/librnd/Makefile (revision 27534) @@ -9,8 +9,14 @@ all: librnd_test +test: librnd_test + ./librnd_test --gui batch + librnd_test: librnd_test.o $(LIBRND) $(CC) -o librnd_test librnd_test.o $(LIBRND) $(LDFLAGS) librnd_test.o: librnd_test.c $(CC) $(CFLAGS) -c -o librnd_test.o librnd_test.c + +clean: + -rm librnd_test librnd_test.o