summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNullspoon <nullspoon@iohq.net>2014-06-12 09:31:42 -0600
committerNullspoon <nullspoon@iohq.net>2014-06-12 09:34:23 -0600
commit3df403bf91698c610430f82c0aa38d2909d5d810 (patch)
tree701fada829bd5474276bc51413c28c4c957e219b /Makefile
parent9c6dcd5bd252b64d4c41a2631554baf9509c82f6 (diff)
downloadnoteless-3df403bf91698c610430f82c0aa38d2909d5d810.tar.gz
noteless-3df403bf91698c610430f82c0aa38d2909d5d810.tar.xz
Initial commit of basic file object
Currently just parses out directories into a vector and the filename into file.name (imaginative, I know). Also updated Makefile to build file object.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 8e5235f..3e305ba 100644
--- a/Makefile
+++ b/Makefile
@@ -5,6 +5,7 @@ obj = obj/
all:
if [[ ! -d obj ]]; then mkdir obj; fi
+ g++ $(debug) -c $(libs)file.cpp -o $(obj)/file.o
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

Generated by cgit