1
0
mirror of https://github.com/krislamo/knrc.git synced 2025-02-22 03:55:51 +00:00
knrc/Makefile

11 lines
190 B
Makefile
Raw Normal View History

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