source: trunk/makefile_pre.mk@ 9

Last change on this file since 9 was 9, checked in by root, 23 years ago

Lock in makefile rework

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 471 bytes
RevLine 
[9]1# makefile_pre.mk - common settings for pre !include
2
3LINK = ilink
4
5!IFNDEF DEBUG
6DEBUG = 0
7!ENDIF
8
9CFLAGS = /G5 /Gm+ /Gs- /Gt- /IDLL /Mp /O- /Q+ /Sp4 /Ss /Ti+ /W3
10
11!IF $(DEBUG)
12LFLAGS = /DE /ALIGN:4 /EXEPACK:2 /NOI /MAP /PMTYPE:PM /NOE
13!ELSE
14LFLAGS = /ALIGN:4 /EXEPACK /MAP /NOI /PMTYPE:PM /NOE
15!ENDIF
16
17# INCLUDE = $(INCLUDE);dll;
18
19RCFLAGS = -i dll
20
21.SUFFIXES:
22
23.SUFFIXES: .c .rc .ipf
24
25.rc.res:
26 $(RC) $(RCFLAGS) -r $*.RC
27
28.c.obj:
29 $(CC) $(CFLAGS) /C $*.c
30
31# The end
Note: See TracBrowser for help on using the repository browser.