Преглед на файлове

Merge pull request #1 from xantares/install_target

Handle DESTDIR in install target
Jason Schmidlapp преди 10 години
родител
ревизия
d6ae972306
променени са 1 файла, в които са добавени 6 реда и са изтрити 2 реда
  1. 6 2
      platform/psp/Makefile

+ 6 - 2
platform/psp/Makefile

@@ -170,6 +170,7 @@ LDFLAGS =
 LIBS = 
 
 PSPSDK=$(shell psp-config --pspsdk-path)
+PSPDIR=$(shell psp-config --psp-prefix)
 include $(PSPSDK)/lib/build.mak
 
 
@@ -188,7 +189,10 @@ pte_threadStart.o: pte_threadStart.c
 endif
 
 install: $(TARGET_LIB)
-	@cp -v $(TARGET_LIB) `psp-config --psp-prefix`/lib
-	@cp -v *.h `psp-config --psp-prefix`/include
+	@install -d $(DESTDIR)$(PSPDIR)/lib
+	@install -m644 $(TARGET_LIB) $(DESTDIR)$(PSPDIR)/lib
+	@install -d $(DESTDIR)$(PSPDIR)/include
+	@install -m644 *.h $(DESTDIR)$(PSPDIR)/include
+	@install -m644 ../../*.h $(DESTDIR)$(PSPDIR)/include
 	@echo "Done."