diff options
author | San Jacobs | 2022-07-29 10:45:37 +0200 |
---|---|---|
committer | San Jacobs | 2022-07-29 10:45:37 +0200 |
commit | 5782dff14768e5cf7e20091bca016013e300e433 (patch) | |
tree | 29c9ee239ea60fc6dde50a318557889d09d08bae /makefile | |
parent | dad85b5baead280b88a8ba272c0b8cfe63d834cf (diff) | |
download | satscalc-5782dff14768e5cf7e20091bca016013e300e433.tar.gz satscalc-5782dff14768e5cf7e20091bca016013e300e433.tar.bz2 satscalc-5782dff14768e5cf7e20091bca016013e300e433.zip |
Updated makefile and ignore for convenience
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |