mirror of
https://github.com/ApfelTeeSaft/Itemzflow.git
synced 2026-08-26 19:23:39 +00:00
25 lines
699 B
Makefile
25 lines
699 B
Makefile
ifndef ORBISDEV
|
|
$(error ORBISDEV, is not set)
|
|
endif
|
|
|
|
target := ps4_lib
|
|
OutPath := lib
|
|
TargetFile := libtag
|
|
AllTarget = $(OutPath)/$(TargetFile).a
|
|
|
|
include $(ORBISDEV)/make/ps4sdklib.mk
|
|
CompilerFlagsCpp += -std=c++17 -DHAVE_CONFIG_H -D_U_="__attribute__((unused))" -D__ORBIS__=1 -D_ORBIS_ -DNDEBUG -D_BSD_SOURCE -fexceptions -frtti
|
|
IncludePath += -I$(ORBISDEV)/usr/include -I$(ORBISDEV)/usr/include/c++/v1 -Iinclude
|
|
|
|
|
|
$(OutPath)/$(TargetFile).a: $(ObjectFiles)
|
|
$(dirp)
|
|
$(archive)
|
|
|
|
install:
|
|
@cp $(OutPath)/$(TargetFile).a $(DESTDIR)$(ORBISDEV)/usr/lib
|
|
@mkdir $(DESTDIR)$(ORBISDEV)/usr/include/libtag
|
|
@cp -r include/* $(DESTDIR)$(ORBISDEV)/usr/include/libtag
|
|
@echo "$(TargetFile) Installed!"
|
|
|