From 3d4511daf3cc54c487af7167cf0f574d50654c9a Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 7 Feb 2002 09:39:15 +0000 Subject: the initial C code for the new HTTP test server --- tests/server/Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tests/server/Makefile (limited to 'tests/server/Makefile') diff --git a/tests/server/Makefile b/tests/server/Makefile new file mode 100644 index 000000000..64b11d42e --- /dev/null +++ b/tests/server/Makefile @@ -0,0 +1,18 @@ +CC = gcc +OPTIM = -O2 +DEF = -DDEFAULT_PORT=7676 +CFLAGS = -g -Wall $(OPTIM) $(DEF) + +.PHONY: all clean + +TARGET = sws +OBJS= sws.o getpart.o + +all: $(TARGET) + +$(TARGET): $(OBJS) + $(CC) $(LDFLAGS) -o $@ $^ + +clean: + -rm -f $(OBJS) *~ $(TARGET) core logfile + -- cgit v1.2.3