17 lines
176 B
Makefile
17 lines
176 B
Makefile
# makefile for Lua distribution (includes)
|
|
|
|
LUA= ..
|
|
|
|
include $(LUA)/config
|
|
|
|
SRCS= lua.h lualib.h lauxlib.h
|
|
|
|
all:
|
|
|
|
clean:
|
|
|
|
co:
|
|
co -q -f -M $(SRCS)
|
|
|
|
klean: clean
|
|
rm -f $(SRCS)
|