diff options
| author | LelixSuper <emanuele98@openmailbox.org> | 2016-08-04 15:48:37 +0200 |
|---|---|---|
| committer | LelixSuper <emanuele98@openmailbox.org> | 2016-08-04 15:48:37 +0200 |
| commit | 3d519c7a397f38f4d1d219615ec0ec74b4eaabd3 (patch) | |
| tree | 1d7640c1313d28f9c0f157c05149389bad031409 /src | |
| parent | 80789e6140fd86a8063ff13e4e8db9dccdff804d (diff) | |
| download | raylib-3d519c7a397f38f4d1d219615ec0ec74b4eaabd3.tar.gz raylib-3d519c7a397f38f4d1d219615ec0ec74b4eaabd3.zip | |
Fix install command of src/ makefile
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index c41fe2f5..1360a920 100644 --- a/src/Makefile +++ b/src/Makefile @@ -222,10 +222,10 @@ ifeq ($(ROOT),root) # /usr/local/include/) are for libraries that are installed # manually (without a package manager). ifeq ($(SHARED),YES) - cp --update libraylib.so /usr/local/lib/libraylib.so + cp --update $(OUTPUT_PATH)/libraylib.so /usr/local/lib/libraylib.so else cp --update raylib.h /usr/local/include/raylib.h - cp --update libraylib.a /usr/local/lib/libraylib.a + cp --update $(OUTPUT_PATH)/libraylib.a /usr/local/lib/libraylib.a endif @echo "raylib dev files installed/updated!" else |
