summaryrefslogtreecommitdiffstats
path: root/t/recipes/checks/executable/legacy-binary/build-spec/orig/Makefile
blob: da1dc5551defe89b2c173ab60343e52f206663c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
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