diff options
author | Nullspoon <nullspoon@iohq.net> | 2014-06-12 09:31:42 -0600 |
---|---|---|
committer | Nullspoon <nullspoon@iohq.net> | 2014-06-12 09:34:23 -0600 |
commit | 3df403bf91698c610430f82c0aa38d2909d5d810 (patch) | |
tree | 701fada829bd5474276bc51413c28c4c957e219b /Makefile | |
parent | 9c6dcd5bd252b64d4c41a2631554baf9509c82f6 (diff) | |
download | noteless-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-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |