1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 03:30:27 +02:00

Rework naming of test suite files

This commit is contained in:
Andy Wingo 2019-03-26 10:02:30 +01:00
parent a20146777d
commit ae1394831c
40 changed files with 3 additions and 40 deletions

View file

@ -1,4 +1,4 @@
TESTS=$(sort $(patsubst test-%.c,%,$(wildcard test-*.c)))
TESTS=$(sort $(basename $(wildcard *.c)))
CC = gcc
CFLAGS = -Wall -O0 -g
@ -16,7 +16,7 @@ check: all
jit.o: ../jit.h ../jit/*.c
$(CC) $(CFLAGS) $(CPPFLAGS) -flto -I.. -o jit.o -c ../jit/jit.c
test-%: test-%.c jit.o test.h
test-%: %.c jit.o test.h
$(CC) $(CFLAGS) $(CPPFLAGS) -flto -I.. -o $@ jit.o $<
clean: