Skip to content
Snippets Groups Projects
Commit 63708cbf authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

automake this dir too

parent d9f30762
No related branches found
No related tags found
No related merge requests found
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
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"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment