diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c5aa715 --- /dev/null +++ b/Makefile @@ -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 $< + +# --------------------------------------------------------- + +