Makefile
author viric@llimona
Tue, 27 Mar 2007 23:29:56 +0200
changeset 58 3c492266923e
parent 48 630e26b09141
child 71 531666e297d7
permissions -rw-r--r--
Preparing v0.2.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

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

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

clean:
	rm -f *.o ts