diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-02-07 09:39:15 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-02-07 09:39:15 +0000 |
commit | 3d4511daf3cc54c487af7167cf0f574d50654c9a (patch) | |
tree | 48bd6474e4911d3bd9e90b5f9bb8f869c80ae2be /tests/server/Makefile | |
parent | 4748b40ad968898bde53b7e59ac1b2e7674578fa (diff) |
the initial C code for the new HTTP test server
Diffstat (limited to 'tests/server/Makefile')
-rw-r--r-- | tests/server/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
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 + |