1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-02 04:40:29 +02:00
guile/test-suite/tests/c-api/Makefile
1999-08-30 07:39:21 +00:00

16 lines
269 B
Makefile

CC = gcc
CFLAGS = -g `guile-config compile`
all: strings
strings: strings.o testlib.o
${CC} ${CFLAGS} ${LDFLAGS} -o strings strings.o testlib.o \
`guile-config link`
strings.o: strings.c testlib.h
testlib.o: testlib.c testlib.h
clean:
rm -f strings
rm -f *.o