Build most dlls as separate shared libraries.
diff --git a/include/Makefile.in b/include/Makefile.in
index 72e7d85..878a5b8 100644
--- a/include/Makefile.in
+++ b/include/Makefile.in
@@ -4,8 +4,6 @@
VPATH = @srcdir@
MODULE = none
-LIB_TARGET = @LIB_TARGET@
-
INSTALLED_INCLUDES = \
windef.h \
windows.h \
@@ -14,15 +12,9 @@
@MAKE_RULES@
-# Testing LIB_TARGET prevents installing header files
-# when --disable-lib is used
-install:: dummy
- if [ $(LIB_TARGET) ]; then \
- [ -d $(includedir) ] || $(MKDIR) $(includedir); \
- for f in $(INSTALLED_INCLUDES); do \
- $(INSTALL_DATA) $(SRCDIR)/$$f $(includedir); \
- done; \
- fi
+install::
+ [ -d $(includedir) ] || $(MKDIR) $(includedir)
+ for f in $(INSTALLED_INCLUDES); do $(INSTALL_DATA) $(SRCDIR)/$$f $(includedir); done
# Don't just do a rm -rf on $(includedir) -- don't want to wipe out
# anything extra the user may have put there.
@@ -30,6 +22,4 @@
cd $(includedir); $(RM) $(INSTALLED_INCLUDES)
-rmdir $(includedir)
-dummy:
-
### Dependencies: