File: Tupfile

package info (click to toggle)
tup 0.8-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,076 kB
  • sloc: ansic: 256,651; sh: 19,101; perl: 184; python: 67; lisp: 63; makefile: 56
file content (31 lines) | stat: -rw-r--r-- 1,015 bytes parent folder | download | duplicates (2)
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
.gitignore
ifeq (@(TUP_WWW),y)

pages += index.html
pages += getting_started.html
pages += examples.html
pages += manual.html
pages += lua_parser.html
pages += tips_and_tricks.html
pages += make_vs_tup.html
pages += tup_vs_mordor.html
pages += license.html
pages += support.html
pages += donate.html

examples += ex_a_first_tupfile.html
examples += ex_dependencies.html
examples += ex_generated_header.html
examples += ex_multiple_directories.html
examples += ex_explicit_variants.html

luaexamples += ex_lua_examples.html

: |> ^ GEN %o^ ./gen_ex_header.sh $(examples) > %o |> examples.inc
: |> ^ GEN %o^ ./gen_ex_header.sh $(luaexamples) > %o |> luaexamples.inc
: examples.inc luaexamples.inc |> ^ GEN %o^ ./gen_menu.sh -x %1f -l %2f $(pages) > %o |> menu.inc
: |> ^ GEN %o^ ./gen_examples.sh $(examples) > %o |> examples.html
: ../../tup.1 |> ^ man2html %o^ man2html -M "" %f > %o |> manual.html
: foreach $(pages) $(examples) $(luaexamples) | menu.inc |> ^ GEN %o^ ./gen_page.sh -m %1i %f > %o |> %b.gen

endif