hb/Makefile

9 lines
106 B
Makefile
Raw Normal View History

2019-02-23 18:08:32 +00:00
CC=gcc
CFLAGS=-I.
hello: main.c
2019-04-18 01:06:55 +00:00
$(CC) -g -o hb main.c
2019-02-23 18:08:32 +00:00
install: hello
2019-04-18 01:06:55 +00:00
install -m 744 hb /usr/local/bin