summaryrefslogtreecommitdiff
path: root/lib/make/acconfig.h
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-01-17 16:07:28 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-01-17 16:07:28 +0000
commit803e78cd9586d7141ea1079600ae284cbaf2127b (patch)
tree97a75e3b8c38eb49bec26524676a5d29b198522d /lib/make/acconfig.h
parentd99e1e6cd7d98f468473e2640999969d190e1122 (diff)
Lots more stuff for the new make system -
configure and config.h.in are generated by running autoconf and autoheader respectively. The resulting configure file can then be run to produce make.config.defn config.h fortran_name.pl You must set an environment variable with the name of the executable first. It should be run from the config-data directory of a configuration - e.g setenv EXE cctk $(CCTK_HOME)/lib/make/configure Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@61 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make/acconfig.h')
-rw-r--r--lib/make/acconfig.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/make/acconfig.h b/lib/make/acconfig.h
new file mode 100644
index 00000000..df5d200d
--- /dev/null
+++ b/lib/make/acconfig.h
@@ -0,0 +1,9 @@
+@BOTTOM@
+
+#if SIZEOF_INT==4
+#define Int int
+#elif SIZEOF_SHORT_INT==4
+#define Int short int
+#else
+#error "Unable to find a 4 byte integer type. "
+#endif