blob: bd67221b0e658c28bc6fcbe82ac37e4299339255 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# makefile for lua hierarchy
all co clean klean:
cd include; $(MAKE) $@
cd src; $(MAKE) $@
cd src/luac; $(MAKE) $@
cd src/lib; $(MAKE) $@
cd src/lua; $(MAKE) $@
strip:
strip bin/lua*
|