Browse Source

Dragon has no liquidity providers, we only fucking notarize

master
Duke Leto 4 years ago
parent
commit
33df4cd75c
  1. 6
      crypto555/m_LP
  2. 31
      crypto555/m_LP_StaticNanoMsg

6
crypto555/m_LP

@ -1,6 +0,0 @@
# Copyright © 2018-2020 The Hush Developers
git pull
rm *.o
gcc -c -DLIQUIDITY_PROVIDER=1 -O2 *.c jpeg/*.c jpeg/unix/*.c -I/usr/lib/x86_64-linux-gnu/curl
mkdir ../agents
rm -f ../agents/libcrypto555.a; ar rc ../agents/libcrypto555.a *.o

31
crypto555/m_LP_StaticNanoMsg

@ -1,31 +0,0 @@
# Very basic makefile for compiling dragon in Linux with StaticNanoMsg
# derived from m_LP (used to compile dragon for linux)
# author: fadedreamz
# Copyright © 2018-2020 The Hush Developers
SRCS=$(wildcard *.c)
SRCS+=$(wildcard jpeg/*.c)
SRCS+=$(wildcard jpeg/unix/*.c)
OBJS=$(SRCS:%.c=%.o)
INCLUDE_DIRS+=-I/usr/lib/x86_64-linux-gnu/curl
PREPROCESSORS+=-DLIQUIDITY_PROVIDER=1 -DUSE_STATIC_NANOMSG
CFLAGS+=-O2 $(PREPROCESSORS) $(INCLUDE_DIRS)
update_repo:
git pull
clean:
-rm $(OBJS)
all: update_repo $(OBJS) static
@echo ' ================'
@echo '| crypto555 [OK] |'
@echo ' ================'
static: $(OBJS)
ar rc ../agents/libcrypto555.a $(OBJS)
.PHONY: update_repo clean all static
Loading…
Cancel
Save