aboutsummaryrefslogtreecommitdiff
path: root/Examples/guile/port/Makefile
blob: 668c66bd31ac692192847832796a78cd6f644be1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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