aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFranklin Wei <me@fwei.tk>2018-11-12 13:26:04 -0500
committerFranklin Wei <me@fwei.tk>2018-11-12 13:26:04 -0500
commitbb87e0d168d01ca4a02d6d438f165e6f20bebbf0 (patch)
treeca7a66e1198aa77669a476eb7c1de901562c180d /Makefile
parentea945ff4ffae82bb1ee77ec28ce373ba4525d283 (diff)
downloadcircgraph-bb87e0d168d01ca4a02d6d438f165e6f20bebbf0.zip
circgraph-bb87e0d168d01ca4a02d6d438f165e6f20bebbf0.tar.gz
circgraph-bb87e0d168d01ca4a02d6d438f165e6f20bebbf0.tar.bz2
circgraph-bb87e0d168d01ca4a02d6d438f165e6f20bebbf0.tar.xz
Update things
Need to refine termination condition. Apart from that, it's fairly robust.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..2f6fb3c
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+CFLAGS=-Og -g
+CXXFLAGS=$(CFLAGS)
+
+all: genrand circgraph Makefile
+genrand: genrand.o
+circgraph: main.o
+ $(CXX) -o $@ $< $(CFLAGS)
+
+clean:
+ rm -f genrand circgraph *.o