summaryrefslogtreecommitdiffstats
path: root/tevent/tevent.mk
diff options
context:
space:
mode:
Diffstat (limited to 'tevent/tevent.mk')
-rw-r--r--tevent/tevent.mk53
1 files changed, 53 insertions, 0 deletions
diff --git a/tevent/tevent.mk b/tevent/tevent.mk
new file mode 100644
index 000000000..b3a6608b9
--- /dev/null
+++ b/tevent/tevent.mk
@@ -0,0 +1,53 @@
+TEVENT_SONAME = libtevent.$(SHLIBEXT).0
+TEVENT_SOLIB = libtevent.$(SHLIBEXT).$(PACKAGE_VERSION)
+
+libtevent.a: $(TEVENT_OBJ)
+ ar -rv libtevent.a $(TEVENT_OBJ)
+
+libtevent.$(SHLIBEXT): $(TEVENT_SOLIB)
+ ln -fs $< $@
+
+$(TEVENT_SONAME): $(TEVENT_SOLIB)
+ ln -fs $< $@
+
+dirs::
+ @mkdir -p lib
+
+installdirs::
+ mkdir -p $(DESTDIR)$(includedir)
+ mkdir -p $(DESTDIR)$(libdir)
+ mkdir -p $(DESTDIR)$(libdir)/pkgconfig
+
+installheaders:: installdirs
+ cp $(srcdir)/tevent.h $(DESTDIR)$(includedir)
+
+installlibs:: installdirs
+ cp tevent.pc $(DESTDIR)$(libdir)/pkgconfig
+ cp libtevent.a $(TEVENT_SOLIB) $(DESTDIR)$(libdir)
+
+install:: all installdirs installheaders installlibs $(PYTHON_INSTALL_TARGET)
+
+clean::
+ rm -f $(TEVENT_SONAME) $(TEVENT_SOLIB) libtevent.a libtevent.$(SHLIBEXT)
+ rm -f tevent.pc
+ rm -f _libtevent.$(SHLIBEXT)
+
+#python stuff
+
+check-python:: build-python
+ $(LIB_PATH_VAR)=. PYTHONPATH=".:$(teventdir)" $(PYTHON) $(teventdir)/tests.py
+
+build-python:: tevent.$(SHLIBEXT)
+
+pytevent.o: $(teventdir)/pytevent.c
+ $(CC) $(PICFLAG) -c $(teventdir)/pytevent.c $(CFLAGS) `$(PYTHON_CONFIG) --cflags`
+
+tevent.$(SHLIBEXT): libtevent.$(SHLIBEXT) pytevent.o
+ $(SHLD) $(SHLD_FLAGS) -o $@ pytevent.o -L. -ltevent `$(PYTHON_CONFIG) --libs`
+
+install-python:: build-python
+ mkdir -p $(DESTDIR)`$(PYTHON) -c "import distutils.sysconfig; print distutils.sysconfig.get_python_lib(0, prefix='$(prefix)')"` \
+ $(DESTDIR)`$(PYTHON) -c "import distutils.sysconfig; print distutils.sysconfig.get_python_lib(1, prefix='$(prefix)')"`
+ cp $(teventdir)/events.py $(DESTDIR)`$(PYTHON) -c "import distutils.sysconfig; print distutils.sysconfig.get_python_lib(0, prefix='$(prefix)')"`
+ cp _libevents.$(SHLIBEXT) $(DESTDIR)`$(PYTHON) -c "import distutils.sysconfig; print distutils.sysconfig.get_python_lib(1, prefix='$(prefix)')"`
+