1
0
mirror of https://github.com/krislamo/knrc.git synced 2026-06-01 04:53:26 +00:00
Files
knrc/Makefile
T
2021-11-09 00:36:42 -05:00

23 lines
507 B
Makefile

all: hello mathvars c2f input count countlines
hello: 01-hello-world.c
gcc -o ./bin/01-helloworld 01-hello-world.c
mathvars: 02-vars-and-math.c
gcc -o ./bin/02-mathvars 02-vars-and-math.c
c2f: 03-celsius-to-fahrenheit.c
gcc -o ./bin/03-c2f 03-celsius-to-fahrenheit.c
input: 04-file-copying.c
gcc -o ./bin/04-input 04-file-copying.c
count: 05-char-counting.c
gcc -o ./bin/05-count 05-char-counting.c
countlines: 06-line-count.c
gcc -o ./bin/06-line-count 06-line-count.c
clean:
$(RM) ./bin/*-*