Commit a7ff157e7252e2508dd0aef31989868b40179c8a
1 parent
b4ece4a7
Exists in
master
and in
1 other branch
Fixing installation of the static library (required for some windows
extensions).
Showing
1 changed file
with
7 additions
and
2 deletions
Show diff stats
Makefile.in
... | ... | @@ -26,6 +26,9 @@ |
26 | 26 | |
27 | 27 | PRODUCT_NAME=@PRODUCT_NAME@ |
28 | 28 | |
29 | +CLIENT_TARGETS= \ | |
30 | + @CLIENT_TARGETS@ | |
31 | + | |
29 | 32 | #---[ Paths ]---------------------------------------------------------------------------- |
30 | 33 | |
31 | 34 | prefix=@prefix@ |
... | ... | @@ -76,8 +79,7 @@ $(BINRLS)/libipc3270@LIBEXT@: |
76 | 79 | |
77 | 80 | install: \ |
78 | 81 | install-plugin \ |
79 | - install-shared \ | |
80 | - install-devel | |
82 | + $(foreach CLIENT_TARGET, $(CLIENT_TARGETS), install-$(CLIENT_TARGET)) | |
81 | 83 | |
82 | 84 | install-plugin: |
83 | 85 | @$(MAKE) -C server DESTDIR=$(DESTDIR) install |
... | ... | @@ -85,6 +87,9 @@ install-plugin: |
85 | 87 | install-shared: |
86 | 88 | @$(MAKE) -C client DESTDIR=$(DESTDIR) install-shared |
87 | 89 | |
90 | +install-static: | |
91 | + @$(MAKE) -C client DESTDIR=$(DESTDIR) install-static | |
92 | + | |
88 | 93 | install-devel: |
89 | 94 | @$(MAKE) -C client DESTDIR=$(DESTDIR) install-devel |
90 | 95 | ... | ... |