mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-02 04:40:29 +02:00
16 lines
269 B
Makefile
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
|