diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-12-09 10:41:27 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-12-09 10:41:27 +0000 |
commit | a6494602fdd3eab7ec9649368c99b4a37a6bafa2 (patch) | |
tree | bf0e07177585ea5ff689976961759b368d4804db /hiper/Makefile | |
parent | 50ec78b488c8f3ceb133482836f1fb49f7fb3916 (diff) |
build ulimiter too
Diffstat (limited to 'hiper/Makefile')
-rw-r--r-- | hiper/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hiper/Makefile b/hiper/Makefile index 7989d060a..aee1cdde9 100644 --- a/hiper/Makefile +++ b/hiper/Makefile @@ -7,12 +7,17 @@ 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 + hiper: hiper.o $(LIBCURL) $(CC) -o $@ $< $(LIBCURL) $(LDFLAGS) hiper.o: hiper.c $(CC) $(CFLAGS) -c $< +ulimiter: ulimiter.c + $(CC) -o $@ $< + clean: rm hiper.o hiper |