From: Daniel Stenberg Date: Mon, 25 Feb 2002 12:44:58 +0000 (+0000) Subject: automake this dir too X-Git-Tag: curl-7_9_5-pre4~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=63708cbfb0b9e6026eb43b4c346ac82b98bc489f;p=curl automake this dir too --- 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"