blob: 687cf383decc8dfd567f89773d0fea1100b24509 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# makefile for Lua distribution (includes)
LUA= ..
include $(LUA)/config
SRCS= lua.h lualib.h lauxlib.h luaconf.h
all:
clean:
co:
co -q -f -M $(SRCS)
klean: clean
rm -f $(SRCS)
|