summaryrefslogtreecommitdiffstats
path: root/tevent/rules.mk
diff options
context:
space:
mode:
Diffstat (limited to 'tevent/rules.mk')
-rw-r--r--tevent/rules.mk21
1 files changed, 21 insertions, 0 deletions
diff --git a/tevent/rules.mk b/tevent/rules.mk
new file mode 100644
index 000000000..6fd990fbf
--- /dev/null
+++ b/tevent/rules.mk
@@ -0,0 +1,21 @@
+.SUFFIXES: .i _wrap.c
+
+.i_wrap.c:
+ $(SWIG) -O -Wall -python -keyword $<
+
+showflags::
+ @echo 'libtevent 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 *~ */*~