diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | makefile | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -1,4 +1,4 @@ __pycache__ -obj/* +obj/*.o a.out notes.txt @@ -19,6 +19,7 @@ a.out: $(OBJECTS) g++ $(LIBDIR) $(LIBS) $(OBJECTS) $(OBJECTS): obj/%.o : src/%.cpp + mkdir -p obj g++ -g $(INCLUDE) -c $< -o $@ clean: @@ -26,3 +27,6 @@ clean: cleanall: rm obj/*.o a.out + +install: a.out + cp a.out /usr/bin/satscalc |