/tags/rel-1-3-26/SWIG/Examples/pike/simple/Makefile
# · Makefile · 18 lines · 14 code · 4 blank · 0 comment · 0 complexity · 7ee49a18df4e91faedea15e2aac30e96 MD5 · raw file
- TOP = ../..
- SWIG = $(TOP)/../swig
- SRCS = example.c
- TARGET = example
- INTERFACE = example.i
- all:
- $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
- TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' pike
- static:
- $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
- TARGET='mypike' INTERFACE='$(INTERFACE)' pike_static
- clean:
- $(MAKE) -f $(TOP)/Makefile pike_clean
- check: all