From bb87e0d168d01ca4a02d6d438f165e6f20bebbf0 Mon Sep 17 00:00:00 2001 From: Franklin Wei Date: Mon, 12 Nov 2018 13:26:04 -0500 Subject: Update things Need to refine termination condition. Apart from that, it's fairly robust. --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.1