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

Last change on this file since 65 was 65, checked in by bird, 23 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
RevLine 
[9]1# We don't want debugging info
2# Accomplish this by overriding CFLAGS.
[65]3CFLAGS = -s -O2
4CXXFLAGS = -s -O2
5LDFLAGS = -s -Zcrtdll -Zexe
[9]6
7# Override SHELL variable (which is CMD.EXE by default)
[65]8# use absolute paths whenever possible.
9ifdef UNIXROOT
10SHELL=$(UNIXROOT)/bin/sh.exe
11else
[9]12SHELL=sh
[65]13endif
[9]14
15# Skip installation
[65]16# bird: true isn't a good value. It will by default point to dummy rule, so leave it.
17# INSTALL_DOSREL=true
[9]18
19# No need for RANLIB
20RANLIB=true
Note: See TracBrowser for help on using the repository browser.