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 |
|
---|
3 | CC = 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+
|
---|
7 |
|
---|
8 | INC = ../include -I ../../../classes/inc -I $(COMMONSRC)/include
|
---|
9 | # Fixme GKY 4-15-23
|
---|
10 | LIB_DIR = $d:/emx/lib
|
---|
11 | #TOOLDIR = .\..
|
---|
12 | LIBDIR = ../lib
|
---|
13 | DEFS =
|
---|
14 | PROGS =
|
---|
15 | ODIR =
|
---|
16 | CPPDIR =
|
---|
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.