templates/c-hello/Makefile.in
Vladimír Čunát e2e9c4a5ba
c-hello: improve makefile again
Co-authored-by: Jörg Thalheim <Mic92@users.noreply.github.com>
2021-11-19 13:41:07 +01:00

13 lines
201 B
Makefile

prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
hello: hello.c
$(CC) -Wall -O3 -o hello hello.c
clean:
rm -f hello
install: hello
install -d $(bindir)
install -t $(bindir) hello