mirror of
https://github.com/moparisthebest/curl
synced 2024-11-08 10:35:05 -05:00
17 lines
199 B
Makefile
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
|
|
|