Explorar el Código

add a simple makefile.

Lucas Stadler %!s(int64=11) %!d(string=hace) años
padre
commit
1aabd94e6c
Se han modificado 1 ficheros con 10 adiciones y 0 borrados
  1. 10 0
      c/mul/Makefile

+ 10 - 0
c/mul/Makefile

@ -0,0 +1,10 @@
1
CC=gcc -std=c99
2
3
run: mul
4
	./mul
5
6
mul: main.c
7
	$(CC) main.c -o mul
8
9
clean:
10
	rm -f mul