diff options
author | Nullspoon <nullspoon@iohq.net> | 2014-05-26 21:54:52 -0600 |
---|---|---|
committer | Nullspoon <nullspoon@iohq.net> | 2014-05-26 21:55:52 -0600 |
commit | 75c30bf4657b9b9000f193e37dddd7bd1270f809 (patch) | |
tree | f608fe706b090f706ce7bc243d7bd0c0bcf28e7c /Makefile | |
download | noteless-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-- | Makefile | 13 |
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" |