diff options
author | Juan Manuel Tomás <jtomas1815@gmail.com> | 2020-04-01 17:58:55 -0300 |
---|---|---|
committer | Juan Manuel Tomás <jtomas1815@gmail.com> | 2020-04-01 17:58:55 -0300 |
commit | 8333349ef40c9e294a1fa9f3d79a0407bb3aee73 (patch) | |
tree | f5e8e6c86878fb131672538ea6fa7d5519e51320 | |
parent | f3f1931ab05bcf220af4f2fe11252f585d07ab51 (diff) | |
download | jet-8333349ef40c9e294a1fa9f3d79a0407bb3aee73.tar.gz jet-8333349ef40c9e294a1fa9f3d79a0407bb3aee73.zip |
Move binaries to bin directory
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | Makefile | 5 |
2 files changed, 5 insertions, 3 deletions
@@ -1,2 +1 @@ -jet -page +bin @@ -1,2 +1,5 @@ jet: Makefile *.c - gcc -ggdb -O0 -fno-builtin -Wall -lcurses jet.c -o jet + gcc -ggdb -O0 -fno-builtin -Wall -lcurses jet.c -o ./bin/jet + +page: Makefile page.c ./test/page.c + gcc -lcurses ./test/page.c -o ./bin/page |