source: trunk/classes/mm-progs/mmprog.inc

Last change on this file was 199, checked in by gyoung, 9 months ago

Update some compile flags

File size: 803 bytes
Line 
1# MM-prog specific makefile include
2
3CC = icc
4#CPPFLAGS = -O -Wno-pointer-sign -Wall -Zomf -Zmt -s
5#CPPFLAGS = -O -Zomf -Zcrtdll -Zmtd -s
6#CPPFLAGS = -Ge+ /Gm+ -G5 /Ss -Gl /O+ -Oc+ -Ol- /Q+
7CPPFLAGS = /Ge+ /Gm+ /G5 /Ss /Gl /O+ /Oc+ /Ol- /Q+ /Ti /Sp4 /B"/pmtype:pm /ma /de"
8
9
10INC = ../include -I ../../../classes/inc -I $(COMMONSRC)/include
11# Fixme GKY 4-15-23
12LIB_DIR = $d:/emx/lib
13#TOOLDIR = .\..
14LIBDIR = ../lib
15DEFS =
16PROGS =
17ODIR =
18CPPDIR =
19
20$(LIBDIR)/%.obj: $(COMMONSRC)/%.c
21# $(CC) -c -Wno-pointer-sign -Wall -o$@ -Zomf -I$(INC) $<
22 $(CC) $(CPPFLAGS) /C+ -I$(INC) /Fo$@ $<
23%.obj: %.c
24# $(CC) -c -Wno-pointer-sign -Wall -o$@ -Zomf -I$(INC) $<
25 $(CC) $(CPPFLAGS) /C -I$(INC) /Fo$@ $<
26
27
28#distribution:
29
Note: See TracBrowser for help on using the repository browser.