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

19 lines
250 B
Makefile
Raw Normal View History

CC = gcc
OPTIM = -O2
DEF = -DDEFAULT_PORT=7676
CFLAGS = -g -Wall $(OPTIM) $(DEF)
.PHONY: all clean
TARGET = sws
OBJS= sws.o getpart.o
all: $(TARGET)
$(TARGET): $(OBJS)
$(CC) $(LDFLAGS) -o $@ $^
clean:
-rm -f $(OBJS) *~ $(TARGET) core logfile