Bladeren bron

Merge pull request #172 from LelixSuper/fix-makefile

Fix install command of src/ makefile
pull/173/head
Ray 8 jaren geleden
committed by GitHub
bovenliggende
commit
5da66e7ec8
1 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. +2
    -2
      src/Makefile

+ 2
- 2
src/Makefile Bestand weergeven

@ -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

Laden…
Annuleren
Opslaan