From ff5c27077c508e7eea1a129c36b9cf7e83fd7c3e Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Sun, 25 Oct 2020 20:18:57 -0400 Subject: [PATCH] Update dapps makefile; remove oraclefeed, hushdex updates, no longer build zmigrate --- src/cc/dapps/Makefile | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/cc/dapps/Makefile b/src/cc/dapps/Makefile index 1fea27084..f74df15e5 100644 --- a/src/cc/dapps/Makefile +++ b/src/cc/dapps/Makefile @@ -1,16 +1,17 @@ # Copyright 2020 The Hush Developers -# just type make to compile all dapps -all: zmigrate oraclefeed +# Just type make to compile all dat dapp code, fellow cypherpunk -subatomic: - $(CC) subatomic.c -o subatomic -lm +# we no longer build zmigrate by default, nobody uses that fucking code +all: hushdex +hushdex: + $(CC) hushdex.c -o hushdex -lm + +# Just for historical knowledge, to study how fucking stupid +# ZEC+KMD were to still support sprout, to this day!!!!!!!! zmigrate: $(CC) zmigrate.c -o zmigrate -lm -oraclefeed: - $(CC) oraclefeed.c -o oraclefeed -lm - clean: - rm zmigrate oraclefeed + rm zmigrate