diff options
author | YamaArashi <shadow962@live.com> | 2016-01-06 01:47:28 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-01-06 01:47:28 -0800 |
commit | be8b04496302184c6e8f04d6179f9c3afc50aeb6 (patch) | |
tree | 726e2468c0c07add773c0dbd86ab6386844259ae /libiberty/configure.bat |
initial commit
Diffstat (limited to 'libiberty/configure.bat')
-rwxr-xr-x | libiberty/configure.bat | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libiberty/configure.bat b/libiberty/configure.bat new file mode 100755 index 0000000..18881ac --- /dev/null +++ b/libiberty/configure.bat @@ -0,0 +1,14 @@ +@echo off
+if "%1" == "h8/300" goto h8300
+
+echo Configuring libiberty for go32
+copy Makefile.dos Makefile
+echo #define NEED_sys_siglist 1 >> config.h
+echo #define NEED_psignal 1 >> config.h
+goto exit
+
+:h8300
+echo Configuring libiberty for H8/300
+copy Makefile.dos Makefile
+
+:exit
|