summaryrefslogtreecommitdiff
path: root/Makefile
blob: adf018f2cbf724e8cfae6dc586ce8c2f678e268b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# makefile for Lua hierarchy
# see INSTALL for installation instructions
# see file "config" for customization instructions

LUA= .

include $(LUA)/config

# primary targets (only "all" and "clean" are useful after distribution)
all clean co klean:
	cd include; $(MAKE) $@
	cd src; $(MAKE) $@
	cd src/luac; $(MAKE) $@
	cd src/lib; $(MAKE) $@
	cd src/lua; $(MAKE) $@

# remove debug information from binaries
strip:
	strip bin/lua bin/luac

# official installation
install: all strip
	mkdir -p $(INSTALL_BIN) $(INSTALL_INC) $(INSTALL_LIB) $(INSTALL_MAN)
	$(INSTALL_EXEC) bin/* $(INSTALL_BIN)
	$(INSTALL_DATA) include/*.h $(INSTALL_INC)
	$(INSTALL_DATA) lib/lib* $(INSTALL_LIB)
	$(INSTALL_DATA) doc/*.1 $(INSTALL_MAN)

# shared libraries (for Linux)
so:
	ld -o lib/liblua.so.$V -shared src/*.o
	ld -o lib/liblualib.so.$V -shared src/lib/*.o
	cd lib; ln -s liblua.so.$V liblua.so; ln -s liblualib.so.$V liblualib.so

# binaries using shared libraries
sobin:
	rm -f bin/lua bin/luac
	cd src/lua; $(MAKE)
	cd src/luac; $(MAKE)

# (end of Makefile)