Added some code to peer into a data structure in Maemian/Schedule.pm. Also added the
[maemian] / nokia-lintian / testset / binary / Makefile
1 all: hello hello-static
2
3 hello: hello.c
4         gcc hello.c -o hello
5
6 hello-static: hello.c
7         gcc -static hello.c -o hello-static
8
9 clean:
10         rm -f hello hello-static
11
12 distclean: clean