1
0
mirror of https://github.com/moparisthebest/curl synced 2024-11-08 10:35:05 -05:00
curl/tests/server/Makefile

17 lines
199 B
Makefile
Raw Normal View History

CC = gcc
2002-02-22 08:53:41 -05:00
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