rename 'testprof/' to 'tests/'

This commit is contained in:
Steffen Jaeckel 2017-06-05 15:58:10 +02:00
parent 07ffa0f1a2
commit e1a1145802
36 changed files with 57 additions and 61 deletions

View file

@ -46,12 +46,12 @@ install_bins: .common_install_bins
test: $(LIBNAME) $(TOBJECTS)
$(LT) --mode=link --tag=CC $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $(TEST) $(TOBJECTS) $(LIBNAME) $(EXTRALIBS)
timing: $(TIMINGS) testprof/common.o $(LIBNAME)
timing: $(TIMINGS) tests/common.o $(LIBNAME)
$(LT) --mode=link --tag=CC $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $(TIMING) $^ $(EXTRALIBS)
# build the demos from a template
define DEMO_template
$(1): demos/$(1).o testprof/common.o $$(LIBNAME)
$(1): demos/$(1).o tests/common.o $$(LIBNAME)
ifneq ($V,1)
@echo " * $${CC} $$@"
endif