Makefile
author viric@llimona
Mon, 02 Apr 2007 17:53:52 +0200
changeset 74 bb1b20d79acf
parent 71 531666e297d7
child 78 e4d5907f5aaf
permissions -rw-r--r--
Marking the TODO for 0.3

GCCFLAGS=-D_XOPEN_SOURCE -D__STRICT_ANSI__
CFLAGS=-pedantic -ansi -Wall -g -O0 ${GCCFLAGS}
OBJECTS=main.o \
	server.o \
	server_start.o \
	client.o \
	msgdump.o \
	jobs.o \
	execute.o \
	msg.o \
	client_run.o \
	mail.o

# AWFUL makefile. It doesn't have the header dependencies.

ts: $(OBJECTS)
	gcc -o ts $^

clean:
	rm -f *.o ts