Initial revision.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@362 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
f89485721e
commit
6fd6a2a1bc
1 changed files with 27 additions and 0 deletions
27
Examples/guile/Makefile.in
Normal file
27
Examples/guile/Makefile.in
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# Makefile for Guile. Used by all of the example programs.
|
||||
|
||||
subdirs = simple matrix
|
||||
|
||||
top_srcdir = @top_srcdir@
|
||||
|
||||
GUILEINCLUDE = @GUILEINCLUDE@
|
||||
GUILELINK = @GUILELINK@
|
||||
|
||||
WRAP = $(IFILE:.i=_wrap.c)
|
||||
|
||||
all:
|
||||
for d in $(subdirs) ; do (cd $$d ; $(MAKE)) ; done
|
||||
|
||||
clean::
|
||||
cd simple; make clean
|
||||
cd matrix; make clean
|
||||
rm -f *~ .~*
|
||||
|
||||
# This is meant to be used w/ "make -f ../Makefile" from subdirs.
|
||||
# Doesn't make sense to use it from here.
|
||||
|
||||
sub-all::
|
||||
../$(top_srcdir)/swig -guile $(IFILE)
|
||||
$(CC) -o $(TARGET) $(SRCS) $(WRAP) $(GUILEINCLUDE) $(GUILELINK)
|
||||
|
||||
# Makefile ends here
|
||||
Loading…
Add table
Add a link
Reference in a new issue