Ticket #32590: patch-Makefile.diff
File patch-Makefile.diff, 689 bytes (added by andremm@…, 13 years ago) |
---|
-
Makefile
old new 41 41 # What to install. 42 42 TO_BIN= lua luac 43 43 TO_INC= lua.h luaconf.h lualib.h lauxlib.h lua.hpp 44 TO_LIB= liblua.a 44 TO_LIB= liblua.a liblua.dylib 45 45 TO_MAN= lua.1 luac.1 46 46 47 47 # Lua version and release. … … 63 63 cd src && $(INSTALL_DATA) $(TO_INC) $(INSTALL_INC) 64 64 cd src && $(INSTALL_DATA) $(TO_LIB) $(INSTALL_LIB) 65 65 cd doc && $(INSTALL_DATA) $(TO_MAN) $(INSTALL_MAN) 66 cd $(INSTALL_LIB) && ln -s liblua.dylib liblua.%VERSION%.dylib 67 cd $(INSTALL_LIB) && ln -s liblua.dylib liblua.%COMPAT_VERSION%.dylib 66 68 67 69 uninstall: 68 70 cd src && cd $(INSTALL_BIN) && $(RM) $(TO_BIN)