summaryrefslogtreecommitdiff
path: root/test-suite/tests/c-api/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/tests/c-api/Makefile')
-rw-r--r--test-suite/tests/c-api/Makefile16
1 files changed, 0 insertions, 16 deletions
diff --git a/test-suite/tests/c-api/Makefile b/test-suite/tests/c-api/Makefile
deleted file mode 100644
index 44488af50..000000000
--- a/test-suite/tests/c-api/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-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