aboutsummaryrefslogtreecommitdiff
path: root/hiper/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'hiper/Makefile')
-rw-r--r--hiper/Makefile38
1 files changed, 0 insertions, 38 deletions
diff --git a/hiper/Makefile b/hiper/Makefile
deleted file mode 100644
index fea1655ae..000000000
--- a/hiper/Makefile
+++ /dev/null
@@ -1,38 +0,0 @@
-#
-# Build test apps for the Hiper project
-# During dev at least, we use a static libcurl.
-#
-
-LDFLAGS = -lcrypt -lidn -lssl -lcrypto -lz -lresolv -L../ares/.libs \
- -lcares
-LIBCURL = -L../lib/.libs/ -lcurl
-CFLAGS = -I../include -g
-
-all: shiper hiper hipev ulimiter
-
-hiper: hiper.o $(LIBCURL)
- $(CC) -o $@ $< $(LIBCURL) $(LDFLAGS)
-
-hiper.o: hiper.c
- $(CC) $(CFLAGS) -c $<
-
-hipev: hipev.o $(LIBCURL)
- $(CC) -o $@ $< $(LIBCURL) $(LDFLAGS) -levent
-
-hipev.o: hipev.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 -f hiper.o hiper shiper shiper.o *~ ulimiter
-
-$(LIBCURL):
- (cd ../lib && make)