diff options
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) |