Browse Source

Create all required folders when installing

sync
Damiano Boppart 7 years ago
parent
commit
a24311cb18
  1. 1
      .hgignore
  2. 1
      Makefile

1
.hgignore

@ -8,3 +8,4 @@ test_adapter
.pEp*
lib
local.conf
build/

1
Makefile

@ -72,6 +72,7 @@ test_%: test_%.o $(TARGET)
.PHONY: install
install: $(TARGET)
-mkdir -p $(PREFIX)/include/pEp
-mkdir -p $(PREFIX)/lib
cp $(HEADERS) $(PREFIX)/include/pEp/
cp $(TARGET) $(PREFIX)/lib/

Loading…
Cancel
Save