source: trunk/src/gcc/config/mh-emx@ 103

Last change on this file since 103 was 65, checked in by bird, 22 years ago

Don't mess with INSTALL_DOSREL. Set SHELL to absolute path if possible.

  • Property cvs2svn:cvs-rev set to 1.2
  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 460 bytes
Line 
1# We don't want debugging info
2# Accomplish this by overriding CFLAGS.
3CFLAGS = -s -O2
4CXXFLAGS = -s -O2
5LDFLAGS = -s -Zcrtdll -Zexe
6
7# Override SHELL variable (which is CMD.EXE by default)
8# use absolute paths whenever possible.
9ifdef UNIXROOT
10SHELL=$(UNIXROOT)/bin/sh.exe
11else
12SHELL=sh
13endif
14
15# Skip installation
16# bird: true isn't a good value. It will by default point to dummy rule, so leave it.
17# INSTALL_DOSREL=true
18
19# No need for RANLIB
20RANLIB=true
Note: See TracBrowser for help on using the repository browser.