mirror of
https://github.com/curl/curl.git
synced 2026-06-20 20:45:38 +03:00
automake this dir too
This commit is contained in:
parent
d9f307623c
commit
63708cbfb0
2 changed files with 10 additions and 16 deletions
|
|
@ -1,16 +0,0 @@
|
|||
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
|
||||
|
||||
10
tests/server/Makefile.am
Normal file
10
tests/server/Makefile.am
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue