1
0
mirror of https://github.com/krislamo/knrc.git synced 2024-09-19 21:00:35 +00:00
knrc/Makefile

14 lines
275 B
Makefile
Raw Normal View History

all: hello mathvars c2f
hello: 01-hello-world.c
gcc -o ./bin/01-helloworld 01-hello-world.c
2021-11-03 04:37:32 +00:00
mathvars: 02-vars-and-math.c
gcc -o ./bin/02-mathvars 02-vars-and-math.c
2021-11-03 05:20:54 +00:00
c2f: 03-celsius-to-fahrenheit.c
gcc -o ./bin/03-c2f 03-celsius-to-fahrenheit.c
2021-11-03 05:20:54 +00:00
clean:
$(RM) ./bin/*-*