diff options
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/Makefile b/src/Makefile index 1d36c93..5bb7761 100644 --- a/src/Makefile +++ b/src/Makefile @@ -53,18 +53,14 @@ $(LUA_A): $(CORE_O) $(LIB_O) $(AR) $@ $(CORE_O) $(LIB_O) $(RANLIB) $@ -$(LUA_T): $(LUA_O) $(LUA_A) luasocket/socket.a luasocket/mime.a luasec/ssl.a +$(LUA_T): $(LUA_O) $(LUA_A) + make -C luasocket linux + make -C luasec linux $(CC) -o $@ $(MYLDFLAGS) $(LUA_O) $(LUA_A) luasocket/socket.a luasocket/mime.a luasec/ssl.a $(LIBS) $(LUAC_T): $(LUAC_O) $(LUA_A) $(CC) -o $@ $(MYLDFLAGS) $(LUAC_O) $(LUA_A) $(LIBS) -luasocket/socket.a luasocket/mime.a: - make -C luasocket linux - -luasec/ssl.a: - make -C luasec linux - clean: make -C luasocket clean make -C luasec clean @@ -126,7 +122,7 @@ solaris: $(MAKE) all MYCFLAGS="-DLUA_USE_POSIX -DLUA_USE_DLOPEN" MYLIBS="-ldl" # list targets that do not create files (but not all makes understand .PHONY) -.PHONY: all $(PLATS) default o a clean depend echo none luasocket/socket.a luasocket/mime.a luasec/ssl.a +.PHONY: all $(PLATS) default o a clean depend echo none # DO NOT DELETE |