automake this dir too

This commit is contained in:
Daniel Stenberg 2002-02-25 12:44:58 +00:00
parent d9f307623c
commit 63708cbfb0
2 changed files with 10 additions and 16 deletions

View File

@ -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

10
tests/server/Makefile.am Normal file
View File

@ -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"