From 888efff4d1935266416288a50b1630a481966166 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Thu, 30 Apr 2020 07:06:47 -0400 Subject: [PATCH] Add subatomic to dapp makefile --- src/cc/dapps/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/cc/dapps/Makefile b/src/cc/dapps/Makefile index 6e7874788..1fea27084 100644 --- a/src/cc/dapps/Makefile +++ b/src/cc/dapps/Makefile @@ -1,6 +1,10 @@ +# Copyright 2020 The Hush Developers # just type make to compile all dapps all: zmigrate oraclefeed +subatomic: + $(CC) subatomic.c -o subatomic -lm + zmigrate: $(CC) zmigrate.c -o zmigrate -lm @@ -9,3 +13,4 @@ oraclefeed: clean: rm zmigrate oraclefeed +