source: trunk/mediafolder/c/createcd/makefile@ 4

Last change on this file since 4 was 2, checked in by stevenhl, 8 years ago

Import sources from cwmm-full.zip dated 2005-03-21

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