mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-10 02:12:20 +00:00
Create folders when installing libraries
Apparently sometimes they don't exist.
This commit is contained in:
parent
a18856e135
commit
8ca7a33402
2 changed files with 6 additions and 0 deletions
|
@ -2,6 +2,10 @@
|
|||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [Unreleased][]
|
||||
|
||||
- TODO
|
||||
|
||||
## [4.5.0][] - 2024-02-11
|
||||
|
||||
- Fixed compatibility issues with devkitPPC release 39.
|
||||
|
@ -117,6 +121,7 @@ All notable changes to this project will be documented in this file.
|
|||
- New Bitmap FX
|
||||
- Add `GRRLIB_Exit()` to free the memory allocated by GRRLIB
|
||||
|
||||
[unreleased]: https://github.com/GRRLIB/GRRLIB/compare/v4.5.0...HEAD
|
||||
[4.5.0]: https://github.com/GRRLIB/GRRLIB/compare/v4.4.1...v4.5.0
|
||||
[4.4.1]: https://github.com/GRRLIB/GRRLIB/compare/v4.4.0...v4.4.1
|
||||
[4.4.0]: https://github.com/GRRLIB/GRRLIB/compare/4.3.2...v4.4.0
|
||||
|
|
|
@ -94,6 +94,7 @@ clean:
|
|||
|
||||
#---------------------------------------------------------------------------------
|
||||
install:
|
||||
@mkdir --parents $(DESTDIR)/lib $(DESTDIR)/include
|
||||
@cp --force $(OUTPUT) $(DESTDIR)/lib
|
||||
@cp --force --parents $(HDR) $(DESTDIR)/include
|
||||
|
||||
|
|
Loading…
Reference in a new issue