make a local install of headers

master
Volker Birk 2023-02-16 11:48:51 +01:00
parent f3c8679bc7
commit bf215cf899
1 changed files with 11 additions and 0 deletions

11
src/NMakefile Normal file
View File

@ -0,0 +1,11 @@
!include headers-to-install.mak
install_headers:
-md ..\include\pEp 2>nul
for %%H in ($(HEADERS_TO_INSTALL)) do xcopy /y/f %%H ..\include\pEp
xcopy /y/f ..\asn.1\*.h ..\include\pEp
touch install_headers
clean:
-del /f/q install_headers 2>nul
-rd /s/q ..\include 2>nul