Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
dom
/
housic
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
add Makefile
master
Dominik Schmidt-Philipp
hace 4 años
padre
708a599788
commit
6237bb5e5e
Se han
modificado 2 ficheros
con
16 adiciones
y
0 borrados
Dividir vista
Mostrar estadísticas de diff
+2
-0
.gitignore
+14
-0
Makefile
+ 2
- 0
.gitignore
Ver fichero
@@ -1 +1,3 @@
*~
*.o
housic
+ 14
- 0
Makefile
Ver fichero
@@ -0,0 +1,14 @@
CC = gcc
exe = housic
src = $(wildcard *.c)
obj = $(src:.c=.o)
LDFLAGS =
$(exe): $(obj)
$(CC) -o $@ $^ $(LDFLAGS)
.PHONY: clean
clean:
rm -f $(obj) $(exe)
Escribir
Vista previa
Cargando…
Cancelar
Guardar