1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00
curl/tests/server/Makefile
Daniel Stenberg 94482d7ca5 use -W too
2002-02-22 13:53:41 +00:00

17 lines
199 B
Makefile

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