Skip to content

Commit

Permalink
Makefile: remove install target hack
Browse files Browse the repository at this point in the history
This hack had some side effects. For instance when doing `make
android_x86 install` it would first do `make android_x86` and then `make
default install`. Correct would be to actually install the android_x86
lib.

This will break the doc generation which needs to be fixed using a
script in a later commit.

This change means that we can't just do `make install` but now need to
do `make default install`.
  • Loading branch information
julianoes committed Oct 31, 2017
1 parent 43c5cb5 commit 50a09fc
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,6 @@ all: default
default:
$(call cmake-build)

# install basically just runs default install
install: ARGS += install
install: default

docs: install
- mkdir install/docs
- (cd install && doxygen ../.doxygen)
Expand Down

0 comments on commit 50a09fc

Please sign in to comment.