# Makefile for Linux

CFLAGS=-Wall

OBJS=debug.o tcpip.o http.o alerts.o

all: GetTLE

GetTLE: $(OBJS)
	$(CC) -o gtle $(OBJS)

clean:
	rm -f *.o gtle
