summaryrefslogtreecommitdiffhomepage
path: root/Makefile.in
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-05-05 19:02:54 -0400
committermidipix <writeonce@midipix.org>2016-11-10 23:35:45 -0500
commit5b28e8fd50ed261e2025a59fd5d267c32522930f (patch)
treec43ffa015f1af9b6ec720ce7d3ceeba5f3b8d814 /Makefile.in
parent53f310856b1ecd00f48aa4bd8d962ce9b13909e2 (diff)
downloadperk-5b28e8fd50ed261e2025a59fd5d267c32522930f.tar.bz2
perk-5b28e8fd50ed261e2025a59fd5d267c32522930f.tar.xz
build system: Makefile.in, custom.mk: added --disable-[shared|static] support.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in26
1 files changed, 20 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in
index 5a02d0f..e507a8d 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -55,6 +55,10 @@ USER_CC = @user_cc@
USER_CPP = @user_cpp@
USER_CXX = @user_cxx@
+ALL_SHARED = @all_shared@
+ALL_STATIC = @all_static@
+DISABLE_SHARED = @disable_shared@
+DISABLE_STATIC = @disable_static@
all:
install:
@@ -63,7 +67,6 @@ static:
install-extras:
install-app-extras:
-install-libs-extras:
include $(PROJECT_DIR)/sysinfo/host/$(HOST).mk
include $(PROJECT_DIR)/sysinfo/compiler/$(COMPILER).mk
@@ -100,9 +103,11 @@ lib/%$(OS_ARCHIVE_EXT):
-all: shared static app
+all: package-shared package-static app
-install: install-libs install-headers install-app install-extras
+install: install-app
+install: install-extras
+install: install-libs
app: package-app app-tag
@@ -112,9 +117,11 @@ app.tag: package-app
cp $(PACKAGE_APP) $(APP)
touch app.tag
-install-libs: install-shared install-static install-libs-extras
+install-libs: package-install-shared
+install-libs: package-install-static
+install-libs: package-install-headers
-install-headers:shared static
+install-headers:package-shared package-static
mkdir -p $(DESTDIR)$(INCLUDEDIR)/$(PACKAGE)
cp $(API_HEADERS) $(DESTDIR)$(INCLUDEDIR)/$(PACKAGE)
@@ -227,7 +234,8 @@ clean: clean-implib
.display: .display-project .display-env .display-tools .display-flags \
- .display-pe .display-elf .display-dirs .display-build
+ .display-pe .display-elf .display-dirs .display-build \
+ .display-config
.display-project:
@echo PACKAGE:' '$(PACKAGE)
@@ -324,6 +332,12 @@ clean: clean-implib
@echo USER_CXX:' '$(USER_CXX)
@echo
+.display-config:
+ @echo ALL_SHARED:' '$(ALL_SHARED)
+ @echo ALL_STATIC:' '$(ALL_STATIC)
+ @echo DISABLE_SHARED:' '$(DISABLE_SHARED)
+ @echo DISABLE_STATIC:' '$(DISABLE_STATIC)
+
.display-host:
@$(CC) $(CFLAGS) -dumpmachine