forked from lunarmodules/ldoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
56 lines (39 loc) · 1.23 KB
/
makefile
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
LUA= $(shell echo `which lua`)
LUA_BINDIR= $(shell echo `dirname $(LUA)`)
LUA_PREFIX= $(shell echo `dirname $(LUA_BINDIR)`)
LUA_SHAREDIR=$(LUA_PREFIX)/share/lua/5.1
ldoc:
install: install_parts
echo "lua $(LUA_SHAREDIR)/ldoc.lua \$$*" > $(DESTDIR)$(LUA_BINDIR)/ldoc
chmod +x $(DESTDIR)$(LUA_BINDIR)/ldoc
install_luajit: install_parts
echo "luajit $(LUA_SHAREDIR)/ldoc.lua \$$*" > $(DESTDIR)$(LUA_BINDIR)/ldoc
chmod +x $(DESTDIR)$(LUA_BINDIR)/ldoc
install_parts:
mkdir -p $(DESTDIR)$(LUA_SHAREDIR)
cp ldoc.lua $(DESTDIR)$(LUA_SHAREDIR)
cp -r ldoc $(DESTDIR)$(LUA_SHAREDIR)
uninstall:
-rm $(DESTDIR)$(LUA_SHAREDIR)/ldoc.lua
-rm -r $(DESTDIR)$(LUA_SHAREDIR)/ldoc
-rm $(DESTDIR)$(LUA_BINDIR)/ldoc
test: test-basic test-example test-md test-tables
RUN=&& ldoc . && diff -r docs cdocs && echo ok
test-basic:
cd tests $(RUN)
test-example:
cd tests && cd example $(RUN)
test-md:
cd tests && cd md-test $(RUN)
test-tables:
cd tests && cd simple $(RUN)
test-clean: clean-basic clean-example clean-md clean-tables
CLEAN=&& ldoc . && rd /S /Q cdocs && cp -rf docs cdocs
clean-basic:
cd tests $(CLEAN)
clean-example:
cd tests && cd example $(CLEAN)
clean-md:
cd tests && cd md-test $(CLEAN)
clean-tables:
cd tests && cd simple $(CLEAN)