Add makefile and readme for CC dapps

This commit is contained in:
Jonathan "Duke" Leto
2018-12-15 10:29:00 -08:00
parent f17ff8ce37
commit 7b30d56d3d
2 changed files with 39 additions and 0 deletions

11
src/cc/dapps/Makefile Normal file
View File

@@ -0,0 +1,11 @@
# just type make to compile all dapps
all: zmigrate oraclefeed
zmigrate:
$(CC) zmigrate.c -o zmigrate -lm
oraclefeed:
$(CC) oraclefeed.c -o oraclefeed -lm
clean:
rm zmigrate oraclefeed