summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNullspoon <nullspoon@iohq.net>2014-05-26 21:54:52 -0600
committerNullspoon <nullspoon@iohq.net>2014-05-26 21:55:52 -0600
commit75c30bf4657b9b9000f193e37dddd7bd1270f809 (patch)
treef608fe706b090f706ce7bc243d7bd0c0bcf28e7c /Makefile
downloadnoteless-75c30bf4657b9b9000f193e37dddd7bd1270f809.tar.gz
noteless-75c30bf4657b9b9000f193e37dddd7bd1270f809.tar.xz
Initial commit of everything
Currently, ls/list actions work along with edit.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..89b1700
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,13 @@
+out = noteless
+libs = src/lib/
+obj = obj/
+
+
+all:
+ g++ $(debug) -c $(libs)config.cpp -o $(obj)/config.o
+ g++ $(debug) -c $(libs)note.cpp -o $(obj)/note.o
+ g++ $(debug) -c $(libs)note_list.cpp -o $(obj)/note_list.o
+ g++ $(debug) src/main.cpp $(obj)/*.o -o $(out)
+
+debug:
+ make all debug="-g"

Generated by cgit