File: OMakefile

package info (click to toggle)
omake 0.9.8.5-3-8
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 20,524 kB
  • ctags: 10,983
  • sloc: ml: 60,296; ansic: 7,127; makefile: 689; sh: 114
file content (17 lines) | stat: -rw-r--r-- 329 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#
# Make sure the output doesn't block from an alias
# that produces a lot of output.
#
Shell. +=
    barf(argv) =
        i = 0
        while $(lt $i, 100000)
            println($i ........................................................................)
            i = $(add $i, 1)

.PHONY: all

all:
    barf

.DEFAULT: all