aboutsummaryrefslogtreecommitdiff
path: root/Examples/guile/port/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/guile/port/Makefile')
-rw-r--r--Examples/guile/port/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/Examples/guile/port/Makefile b/Examples/guile/port/Makefile
new file mode 100644
index 000000000..668c66bd3
--- /dev/null
+++ b/Examples/guile/port/Makefile
@@ -0,0 +1,20 @@
+CC = gcc
+SRCS = port.c
+TARGET = port
+IFILE = port.i
+MKDIR = ..
+
+
+all::
+ $(MAKE) -f $(MKDIR)/Makefile \
+ SRCS='$(SRCS)' \
+ TARGET=$(TARGET) \
+ IFILE=$(IFILE) \
+ CC=$(CC) \
+ MODULE=$(MODULE) \
+ sub-all
+
+clean::
+ rm -f $(TARGET) *_wrap* *~ .~* core test.out
+
+check: all