From 1f704cfb89324fd7b7cc6f92ea7fa66c7a46846c Mon Sep 17 00:00:00 2001 From: Sam Roberts Date: Tue, 27 Sep 2011 12:54:51 -0700 Subject: Add all-unix and install-unix targets which include all modules supported on unix. Besides standard socket and mime modules, this includes unix domain socket support. --- makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'makefile') diff --git a/makefile b/makefile index 6d70039..97a72e9 100644 --- a/makefile +++ b/makefile @@ -11,7 +11,7 @@ INSTALL_SOCKET_LIB=$(INSTALL_TOP_LIB)/socket INSTALL_MIME_SHARE=$(INSTALL_TOP_SHARE)/mime INSTALL_MIME_LIB=$(INSTALL_TOP_LIB)/mime -all clean: +all clean all-unix: cd src; $(MAKE) $@ #------ @@ -46,6 +46,9 @@ install: all cd src; mkdir -p $(INSTALL_MIME_LIB) cd src; $(INSTALL_EXEC) $(MIME_SO) $(INSTALL_MIME_LIB)/core.$(EXT) +install-unix: install all-unix + cd src; $(INSTALL_EXEC) $(UNIX_SO) $(INSTALL_SOCKET_LIB)/$(UNIX_SO) + #------ # End of makefile # -- cgit v1.2.3-55-g6feb