]> granicus.if.org Git - curl/commitdiff
automake this dir too
authorDaniel Stenberg <daniel@haxx.se>
Mon, 25 Feb 2002 12:44:58 +0000 (12:44 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 25 Feb 2002 12:44:58 +0000 (12:44 +0000)
tests/server/Makefile [deleted file]
tests/server/Makefile.am [new file with mode: 0644]

diff --git a/tests/server/Makefile b/tests/server/Makefile
deleted file mode 100644 (file)
index 01ecfba..0000000
+++ /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 (file)
index 0000000..d4776c2
--- /dev/null
@@ -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"