making my own Makefile

Este commit está contenido en:
tonton Th 2020-03-28 10:10:04 +01:00
padre 850cf9d8bd
commit 56a7863884
Se han modificado 1 ficheros con 19 adiciones y 0 borrados

19
Makefile Archivo normal
Ver fichero

@ -0,0 +1,19 @@
#
# Guinness Server from tnemeth
#
# Makefile handcrafted by tTh
#
H_DEP = broadcast.h commands.h defines.h guinnessd.h printlog.h \
xmem.h clients.h config.h drinks.h lists.h tools.h
COPT = -Wall -g
# ---------------------------------------------------------
guinnessd.o: guinnessd.c Makefile
gcc $(COPT) -c $<
# ---------------------------------------------------------