diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-12-20 09:19:30 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-12-20 09:19:30 +0000 |
commit | 60006ff9937a3f81ad36312765276c494c85cba3 (patch) | |
tree | 3e5e9956bb8550b4bd9dac81a1d280f5e196180a /hiper/Makefile | |
parent | f3af5d7b8ec12321b616082c4447972792fd48dd (diff) |
shiper is the new test tool for the new API
Diffstat (limited to 'hiper/Makefile')
-rw-r--r-- | hiper/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/hiper/Makefile b/hiper/Makefile index aee1cdde9..fec8b065c 100644 --- a/hiper/Makefile +++ b/hiper/Makefile @@ -7,7 +7,7 @@ LDFLAGS = -lcrypt -lidn -lssl -lcrypto -ldl -lz -lresolv -L../ares/.libs -lcares LIBCURL = -L../lib/.libs/ -lcurl CFLAGS = -I../include -g -DHAVE_CURL_MULTI_SOCKET -all: hiper ulimiter +all: shiper hiper ulimiter hiper: hiper.o $(LIBCURL) $(CC) -o $@ $< $(LIBCURL) $(LDFLAGS) @@ -15,11 +15,17 @@ hiper: hiper.o $(LIBCURL) hiper.o: hiper.c $(CC) $(CFLAGS) -c $< +shiper: shiper.o $(LIBCURL) + $(CC) -o $@ $< $(LIBCURL) $(LDFLAGS) + +shiper.o: shiper.c + $(CC) $(CFLAGS) -c $< + ulimiter: ulimiter.c $(CC) -o $@ $< clean: - rm hiper.o hiper + rm -f hiper.o hiper shiper shiper.o *~ ulimiter $(LIBCURL): (cd ../lib && make) |