aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-02-25 12:44:58 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-02-25 12:44:58 +0000
commit63708cbfb0b9e6026eb43b4c346ac82b98bc489f (patch)
tree5658e5e70b257e721d33203d5ac734958f403953 /tests
parentd9f307623c65601ae5acfea076d2c5bb9e8c608c (diff)
automake this dir too
Diffstat (limited to 'tests')
-rw-r--r--tests/server/Makefile16
-rw-r--r--tests/server/Makefile.am10
2 files changed, 10 insertions, 16 deletions
diff --git a/tests/server/Makefile b/tests/server/Makefile
deleted file mode 100644
index 01ecfba02..000000000
--- a/tests/server/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-CC = gcc
-CFLAGS = -g -Wall -W
-
-.PHONY: all clean
-
-TARGET = sws
-OBJS= sws.o getpart.o
-
-all: $(TARGET)
-
-$(TARGET): $(OBJS)
- $(CC) $(LDFLAGS) -o $@ $^
-
-clean:
- -rm -f $(OBJS) *~ $(TARGET) core logfile
-
diff --git a/tests/server/Makefile.am b/tests/server/Makefile.am
new file mode 100644
index 000000000..d4776c295
--- /dev/null
+++ b/tests/server/Makefile.am
@@ -0,0 +1,10 @@
+CFLAGS = -g -Wall -W
+
+AUTOMAKE_OPTIONS = foreign
+
+noinst_PROGRAMS = sws
+
+sws_SOURCES= sws.c getpart.c
+
+all:
+ echo "nothing to do here for make all"