]> git.donarmstrong.com Git - lilypond.git/blob - guile18/test-suite/tests/c-api/Makefile
New upstream version 2.19.65
[lilypond.git] / guile18 / test-suite / tests / c-api / Makefile
1 CC = gcc
2 CFLAGS = -g `guile-config compile`
3
4 all: strings
5
6 strings: strings.o testlib.o
7         ${CC} ${CFLAGS} ${LDFLAGS} -o strings strings.o testlib.o \
8                 `guile-config link`
9
10 strings.o: strings.c testlib.h
11 testlib.o: testlib.c testlib.h
12
13
14 clean:
15         rm -f strings
16         rm -f *.o