Index: tests/conf/Makefile =================================================================== --- tests/conf/Makefile (revision 5816) +++ tests/conf/Makefile (revision 5817) @@ -40,9 +40,11 @@ ../../src_3rd/genvector/gds_char.o \ ../../src_3rd/genvector/vtp0.o +OBJS = conftest.o help.o + all: conftest -conftest: conftest.o help.o $(LIB_3RD_OBJS) $(LIB_PCB_OBJS) $(LIB_PLUGIN_OBJS) +conftest: $(OBJS) $(LIB_3RD_OBJS) $(LIB_PCB_OBJS) $(LIB_PLUGIN_OBJS) conftest.o: conftest.c @@ -53,3 +55,6 @@ test: cd tests && $(MAKE) all + +clean: + -rm conftest tests/*.out $(OBJS)