summaryrefslogtreecommitdiffstats
path: root/events/rules.mk
blob: cfe548039b7c7b7f7b016a89e3c7556e64bb736b (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 'libevents 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 *~ */*~