mirror of
https://github.com/krislamo/knrc.git
synced 2025-09-12 08:49:29 +00:00
Exercise 1-4. print Celsius to Fahrenheit table
This commit is contained in:
5
Makefile
5
Makefile
@@ -1,4 +1,4 @@
|
||||
all: hello mathvars
|
||||
all: hello mathvars c2f
|
||||
|
||||
hello: 01-hello-world.c
|
||||
gcc -o ./bin/01-helloworld 01-hello-world.c
|
||||
@@ -6,5 +6,8 @@ hello: 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
|
||||
|
||||
clean:
|
||||
$(RM) ./bin/*-*
|
||||
|
Reference in New Issue
Block a user