diff options
author | lloyd <[email protected]> | 2014-11-12 01:50:35 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-11-12 01:50:35 +0000 |
commit | 62ff505146cac307ca751109297332035bdc8b73 (patch) | |
tree | 55b31ba6d635338f8f4c8e3906b7f16ba003e72a /src/build-data/makefile/nmake.in | |
parent | 8b0cbccc7b11e545ed27bc6d7bda04b5cf632e60 (diff) |
Add a new Python install script and clean up the makefile templates
Diffstat (limited to 'src/build-data/makefile/nmake.in')
-rw-r--r-- | src/build-data/makefile/nmake.in | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/build-data/makefile/nmake.in b/src/build-data/makefile/nmake.in index f45690d06..95d8c0422 100644 --- a/src/build-data/makefile/nmake.in +++ b/src/build-data/makefile/nmake.in @@ -73,12 +73,4 @@ distclean: clean $(RM) Makefile $(LIBNAME).* $(APP).* install: $(LIBRARIES) docs - -$(MKDIR) $(DESTDIR)\include\botan - $(INSTALL_CMD) botan.* $(DESTDIR) - $(INSTALL_CMD) build\include\botan\*.h $(DESTDIR)\include\botan - - -$(MKDIR) $(DESTDIR)\bin - $(INSTALL_CMD) $(APP) $(DESTDIR)\bin - - -$(MKDIR) $(DESTDIR)\lib - $(INSTALL_CMD) $(LIBRARIES) $(DESTDIR)\lib + $(SCRIPTS_DIR)/install.py --destdir=%{destdir} --bindir=%{bindir} --libdir=%{libdir} --docdir=%{docdir} --includedir=%{includedir} |