|
Last change
on this file since 201 was 104, checked in by gyoung, 2 years ago |
|
Remaining changes from merge with Lars 2.9 branch
|
|
File size:
584 bytes
|
| Line | |
|---|
| 1 | # Makefile
|
|---|
| 2 |
|
|---|
| 3 | include ../../../make.inc
|
|---|
| 4 |
|
|---|
| 5 | CC = icc
|
|---|
| 6 | LIB_DIR = $d:/emx/lib
|
|---|
| 7 | CPPFLAGS = -O -Zomf -Zcrtdll -s
|
|---|
| 8 | CPPFLAGSVAC = /Ge /Gm+ /G4 /Gl- /O+ /Oc+ /Ol- /Q+ /Ss
|
|---|
| 9 | INC = ../../include
|
|---|
| 10 | DEFS =
|
|---|
| 11 | PROGS =
|
|---|
| 12 | ODIR = .
|
|---|
| 13 | CPPDIR = .
|
|---|
| 14 | BINDIR = ../../dist/bin
|
|---|
| 15 | HELPERDIR = ..\helper
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 | all: creatcd.exe
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 | creatcd.exe: createcd.c
|
|---|
| 23 | ifdef ECS_COMPILE
|
|---|
| 24 | icc $(CPPFLAGSVAC) -I$(INC) $<
|
|---|
| 25 | else
|
|---|
| 26 | icc $(CPPFLAGSVAC) -I$(INC) $<
|
|---|
| 27 | # gcc $(CPPFLAGS) -I$(INC) $< -Zlinker /PMTYPE:VIO
|
|---|
| 28 | endif
|
|---|
| 29 |
|
|---|
| 30 | clean:
|
|---|
| 31 | -rm *.obj
|
|---|
| 32 | -rm *.exe
|
|---|
| 33 |
|
|---|
| 34 | cleaner:
|
|---|
| 35 | -rm *.*~
|
|---|
| 36 |
|
|---|
| 37 |
|
|---|
| 38 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.