source: branches/classes/mm-progs/mmprog.inc@ 222

Last change on this file since 222 was 148, checked in by gyoung, 19 months ago

Automate building of all def files. Some minor code and makefile cleanup

File size: 709 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
6CPPFLAGS = -Ge+ /Gm+ -G5 /Ss -Gl /O+ -Oc+ -Ol- /Q+
7
8INC = ../include -I ../../../classes/inc -I $(COMMONSRC)/include
9# Fixme GKY 4-15-23
10LIB_DIR = $d:/emx/lib
11#TOOLDIR = .\..
12LIBDIR = ../lib
13DEFS =
14PROGS =
15ODIR =
16CPPDIR =
17
18$(LIBDIR)/%.obj: $(COMMONSRC)/%.c
19# $(CC) -c -Wno-pointer-sign -Wall -o$@ -Zomf -I$(INC) $<
20 $(CC) $(CPPFLAGS) /C+ -I$(INC) /Fo$@ $<
21%.obj: %.c
22# $(CC) -c -Wno-pointer-sign -Wall -o$@ -Zomf -I$(INC) $<
23 $(CC) $(CPPFLAGS) /C -I$(INC) /Fo$@ $<
24
25
26#distribution:
27
Note: See TracBrowser for help on using the repository browser.