]> git.donarmstrong.com Git - lilypond.git/blobdiff - guile18/test-suite/tests/c-api/Makefile
Import guile-1.8 as multiple upstream tarball component
[lilypond.git] / guile18 / test-suite / tests / c-api / Makefile
diff --git a/guile18/test-suite/tests/c-api/Makefile b/guile18/test-suite/tests/c-api/Makefile
new file mode 100644 (file)
index 0000000..44488af
--- /dev/null
@@ -0,0 +1,16 @@
+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