summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am8
-rw-r--r--msvc/README2
-rw-r--r--msvc/config.h27
3 files changed, 36 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index cabed4b8..9bd8d35b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -2,10 +2,16 @@ AUX_DIST_GEN = \
$(ac_aux_dir)/config.guess \
$(ac_aux_dir)/config.sub \
$(ac_aux_dir)/install-sh \
- $(ac_aux_dir)/missing
+ $(ac_aux_dir)/missing \
+ $(ac_aux_dir)/mkinstalldirs
+
+MSVC_FILES= \
+ msvc/README \
+ msvc/config.h
EXTRA_DIST= \
$(AUX_DIST_GEN) \
+ $(MSVC_FILES) \
config.h \
TODO \
BUGS \
diff --git a/msvc/README b/msvc/README
new file mode 100644
index 00000000..6787de30
--- /dev/null
+++ b/msvc/README
@@ -0,0 +1,2 @@
+Files for a possible future MSVC build.
+
diff --git a/msvc/config.h b/msvc/config.h
new file mode 100644
index 00000000..a28e1cc2
--- /dev/null
+++ b/msvc/config.h
@@ -0,0 +1,27 @@
+/* config.h for MSVC builds. This is just the config.h created by
+ * configure. */
+
+/* Name of package */
+#define PACKAGE "chocolate-doom"
+
+/* Define to the address where bug reports for this package should be sent. */
+#define PACKAGE_BUGREPORT "fraggle@alkali.org"
+
+/* Define to the full name of this package. */
+#define PACKAGE_NAME "Chocolate Doom"
+
+/* Define to the full name and version of this package. */
+#define PACKAGE_STRING "Chocolate Doom 0.2.0"
+
+/* Define to the one symbol short name of this package. */
+#define PACKAGE_TARNAME "chocolate-doom"
+
+/* Define to the version of this package. */
+#define PACKAGE_VERSION "0.2.0"
+
+/* Version number of package */
+#define VERSION "0.2.0"
+
+/* Define to 1 if your processor stores words with the most significant byte
+ first (like Motorola and SPARC, unlike Intel and VAX). */
+/* #undef WORDS_BIGENDIAN */