Explorar el Código

add Makefile

master
padre
commit
6237bb5e5e
Se han modificado 2 ficheros con 16 adiciones y 0 borrados
  1. +2
    -0
      .gitignore
  2. +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)

Cargando…
Cancelar
Guardar