swig/Examples/guile/port/Makefile
Matthias Köppe 6d4a3945dd [Guile] New example.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@872 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2000-09-21 21:03:32 +00:00

20 lines
291 B
Makefile

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