summaryrefslogtreecommitdiffstats
path: root/tdb/rules.mk
blob: 7b765625dfc292aecd84d4269174e3228789ef8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.SUFFIXES: .i _wrap.c

.i_wrap.c: 
	$(SWIG) -O -Wall -python -keyword $<

showflags::
	@echo 'tdb will be compiled with flags:'
	@echo '  CFLAGS = $(CFLAGS)'
	@echo '  CPPFLAGS = $(CPPFLAGS)'
	@echo '  LDFLAGS = $(LDFLAGS)'
	@echo '  LIBS = $(LIBS)'

.SUFFIXES: .c .o

.c.o:
	@echo Compiling $*.c
	@mkdir -p `dirname $@`
	@$(CC) $(PICFLAG) $(CFLAGS) -c $< -o $@

distclean::
	rm -f *~ */*~