2021-11-12 04:04:06 +00:00
|
|
|
all: hello mathvars c2f input count countlines blanks
|
2021-11-03 04:02:07 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2021-11-04 03:53:07 +00:00
|
|
|
c2f: 03-celsius-to-fahrenheit.c
|
|
|
|
gcc -o ./bin/03-c2f 03-celsius-to-fahrenheit.c
|
|
|
|
|
2021-11-06 00:54:19 +00:00
|
|
|
input: 04-file-copying.c
|
|
|
|
gcc -o ./bin/04-input 04-file-copying.c
|
|
|
|
|
2021-11-06 01:29:39 +00:00
|
|
|
count: 05-char-counting.c
|
|
|
|
gcc -o ./bin/05-count 05-char-counting.c
|
|
|
|
|
2021-11-09 05:36:42 +00:00
|
|
|
countlines: 06-line-count.c
|
|
|
|
gcc -o ./bin/06-line-count 06-line-count.c
|
|
|
|
|
2021-11-12 04:04:06 +00:00
|
|
|
blanks: 07-extra-blanks.c
|
|
|
|
gcc -o ./bin/07-extra-blanks 07-extra-blanks.c
|
|
|
|
|
2021-11-03 05:20:54 +00:00
|
|
|
clean:
|
|
|
|
$(RM) ./bin/*-*
|