# For gcc
CC= gcc
# For ANSI compilers
#CC= cc

#For Optimization
#CFLAGS= -O2
#For debugging
CFLAGS= -g

RM= /bin/rm -f
#--- You shouldn't have to edit anything else. ---

.c.o: 
	$(CC) -c $(CFLAGS) $<

all: teste

teste: teste.o util.o  
	$(CC) teste.o util.o  -o teste.cgi


clean:
	rm -f *.o  teste.cgi

