Commit 63708cbf authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

automake this dir too

parent d9f30762
Loading
Loading
Loading
Loading

tests/server/Makefile

deleted100644 → 0
+0 −16
Original line number Original line Diff line number Diff line
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 −0
Original line number Original line Diff line number Diff line
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"