aboutsummaryrefslogtreecommitdiffstats
path: root/src/build-data/makefile/nmake.in
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-29 20:17:08 +0000
committerlloyd <[email protected]>2008-09-29 20:17:08 +0000
commit7c0319368d1948d54db514e5f72c589a397e2909 (patch)
tree2d52b6dd8715a6ea0fc21b3a66673fb38a8d4ebb /src/build-data/makefile/nmake.in
parent0f2dfff90fe3882a85308d66a05803178a452023 (diff)
Remove the misc dir:
Moved XS, Boost Python, and SWIG wrappers to new toplevel directory 'wrappers' Moved NIST X.509 test suite into checks directory Move the build information used by configure.pl to src/build-data Move scripts directory to doc (for lack of a better spot)
Diffstat (limited to 'src/build-data/makefile/nmake.in')
-rw-r--r--src/build-data/makefile/nmake.in111
1 files changed, 111 insertions, 0 deletions
diff --git a/src/build-data/makefile/nmake.in b/src/build-data/makefile/nmake.in
new file mode 100644
index 000000000..df4669dd4
--- /dev/null
+++ b/src/build-data/makefile/nmake.in
@@ -0,0 +1,111 @@
+##################################################
+# Compiler Options #
+##################################################
+CXX = @{var:cc}
+LIB_OPT = @{var:lib_opt}
+CHECK_OPT = @{var:check_opt}
+MACH_OPT = @{var:mach_opt}
+LANG_FLAGS = @{var:lang_flags}
+WARN_FLAGS = @{var:warn_flags}
+LINK_TO = @{var:link_to}
+
+##################################################
+# Version Numbers #
+##################################################
+MAJOR = @{var:version_major}
+MINOR = @{var:version_minor}
+PATCH = @{var:version_patch}
+
+VERSION = $(MAJOR).$(MINOR).$(PATCH)
+
+##################################################
+# Installation Settings #
+##################################################
+INSTALLROOT = @{var:prefix}
+
+LIBDIR = $(INSTALLROOT)\@{var:libdir}
+HEADERDIR = $(INSTALLROOT)\@{var:includedir}\botan
+DOCDIR = $(INSTALLROOT)\@{var:docdir}\Botan-$(VERSION)
+
+##################################################
+# Aliases for Common Programs #
+##################################################
+AR = @{var:ar_command}
+CD = @cd
+ECHO = @echo
+INSTALL = @{var:install_cmd_exec}
+INSTALL_CMD = @{var:install_cmd_exec}
+MKDIR = @md
+MKDIR_INSTALL = @md
+RM = @del /Q
+RMDIR = @rmdir
+
+##################################################
+# File Lists #
+##################################################
+CHECK = check
+
+DOCS = @{var:doc_files}
+
+HEADERS = @{var:include_files}
+
+LIBOBJS = @{var:lib_objs}
+
+CHECKOBJS = @{var:check_objs}
+
+LIB_FLAGS = $(LIB_OPT) $(MACH_OPT) $(LANG_FLAGS) $(WARN_FLAGS)
+CHECK_FLAGS = $(CHECK_OPT) $(LANG_FLAGS) $(WARN_FLAGS)
+
+LIBRARIES = $(STATIC_LIB)
+
+LIBNAME = libbotan
+STATIC_LIB = $(LIBNAME).@{var:static_suffix}
+
+all: $(LIBRARIES)
+
+##################################################
+# Build Commands #
+##################################################
+@{var:lib_build_cmds}
+
+@{var:check_build_cmds}
+
+##################################################
+# Link Commands #
+##################################################
+
+# Link for Borland?
+#ilink32 -L$(BCB)\lib -w -c -x -Gn -ap -Tpe c0x32.obj \
+# $(CHECKOBJS),check.exe,,$(LINK_TO) $(STATIC_LIB)
+
+$(CHECK): $(LIBRARIES) $(CHECKOBJS)
+ link /OUT:[email protected] $(CHECKOBJS) $(STATIC_LIB) $(LINK_TO)
+
+$(STATIC_LIB): $(LIBOBJS)
+ $(AR) /OUT:$@ /NAME:BOTAN-$(VERSION) $(LIBOBJS)
+
+##################################################
+# Misc Targets #
+##################################################
+static: $(STATIC_LIB)
+
+##################################################
+# Fake Targets #
+##################################################
+clean:
+ $(RM) @{var:build-dir}\lib\* @{var:build-dir}\checks\*
+ $(RM) $(LIBRARIES) $(CHECK)
+
+distclean: clean
+ $(RM) @{var:build-dir}\build.h
+ $(RM) @{var:build-dir}\include\botan\*
+ $(RMDIR) @{var:build-dir}\include\botan @{var:build-dir}\include
+ $(RMDIR) @{var:build-dir}\lib @{var:build-dir}\checks
+ $(RMDIR) @{var:build-dir}
+ $(RM) Makefile
+
+##################################################
+# Install Commands #
+##################################################
+install: $(LIBRARIES)
+ $(ECHO) "Install command not implemented"