Adding side stream changes to Maemian. Working to integrate full upstream libraries...
[maemian] / nokia-lintian / testset / binary / Makefile
diff --git a/nokia-lintian/testset/binary/Makefile b/nokia-lintian/testset/binary/Makefile
new file mode 100644 (file)
index 0000000..da1dc55
--- /dev/null
@@ -0,0 +1,12 @@
+all: hello hello-static
+
+hello: hello.c
+       gcc hello.c -o hello
+
+hello-static: hello.c
+       gcc -static hello.c -o hello-static
+
+clean:
+       rm -f hello hello-static
+
+distclean: clean