summaryrefslogtreecommitdiffhomepage
path: root/sofort/pkgconf.mk
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-12-31 20:57:15 -0500
committermidipix <writeonce@midipix.org>2018-12-31 21:10:06 -0500
commit8f2b62214f0f43fad6f1006d4dc3813c3dce6bab (patch)
treea9b7459b1a70cbf3d3a2440f4e0765168f913594 /sofort/pkgconf.mk
parentda3ec436721e702f08a556a4f2c8260a091bf127 (diff)
downloadw32lib-8f2b62214f0f43fad6f1006d4dc3813c3dce6bab.tar.bz2
w32lib-8f2b62214f0f43fad6f1006d4dc3813c3dce6bab.tar.xz
build system: sofort: refactored, rearranged using distinct sub-folders.
Diffstat (limited to 'sofort/pkgconf.mk')
-rw-r--r--sofort/pkgconf.mk40
1 files changed, 0 insertions, 40 deletions
diff --git a/sofort/pkgconf.mk b/sofort/pkgconf.mk
deleted file mode 100644
index c8fc711..0000000
--- a/sofort/pkgconf.mk
+++ /dev/null
@@ -1,40 +0,0 @@
-ifeq ($(PKGCONF),no)
-
-install-pkgconf:
-
-else
-
-PKGCONF_VERSION = $(VER_MAJOR).$(VER_MINOR).$(VER_PATCH)
-
-build/$(PACKAGE).pc: .pkgconf dirs.tag
-
-build/$(PACKAGE).pc:
- @touch $@
- @chmod 0644 $@
- PKGCONF_NAME='$(PKGNAME)' \
- PKGCONF_DESC='$(PKGDESC)' \
- PKGCONF_USRC='$(PKGUSRC)' \
- PKGCONF_REPO='$(PKGREPO)' \
- PKGCONF_PSRC='$(PKGPSRC)' \
- PKGCONF_DURL='$(PKGDURL)' \
- PKGCONF_DEFS='$(PKGDEFS)' \
- PKGCONF_LIBS='$(PKGLIBS)' \
- \
- PKGCONF_EXEC_PREFIX='$(EXEC_PREFIX)' \
- PKGCONF_PREFIX='$(PREFIX)' \
- PKGCONF_LIBDIR='$(LIBDIR)' \
- PKGCONF_INCLUDEDIR='$(INCLUDEDIR)' \
- PKGCONF_VERSION='$(PKGCONF_VERSION)' \
- $(PROJECT_DIR)/sofort/pkgconf.sh > $@
-
-install-pkgconf: build/$(PACKAGE).pc
- mkdir -p $(DESTDIR)$(LIBDIR)/pkgconfig
- cp -p build/$(PACKAGE).pc $(DESTDIR)$(LIBDIR)/pkgconfig
-
-install-shared: install-pkgconf
-
-install-static: install-pkgconf
-
-.PHONY: .pkgconf install-pkgconf
-
-endif