# Makefile for distpalind server # By: Charlton Harrison # Macros CC = gcc RM = rm -f LIBS = -lpthread CFLAGS = -O2 -D_REENTRANT all : distpalind distpalind : uici.o distpalind.o $(CC) -o distpalind uici.o distpalind.o $(LIBS) uici.o : uici.c uici.h $(CC) $(CFLAGS) -c uici.c distpalind.o : distpalind.c uici.h $(CC) $(CFLAGS) -c distpalind.c clean : $(RM) uici.o $(RM) distpalind.o $(RM) distpalind