|
Last change
on this file since 2 was 2, checked in by stevenhl, 8 years ago |
|
Import sources from cwmm-full.zip dated 2005-03-21
|
|
File size:
1.2 KB
|
| Line | |
|---|
| 1 | # Makefile for CWMM resource dll
|
|---|
| 2 |
|
|---|
| 3 | include ../../../make.inc
|
|---|
| 4 | include ../../../build.inc
|
|---|
| 5 |
|
|---|
| 6 | LANGUAGE = _DE
|
|---|
| 7 |
|
|---|
| 8 | CC = icc
|
|---|
| 9 | CPPFLAGS = /Ge- /Gm+ /G4 /Gl /O+ /Oc+ /Ol- /Q+ $(VACDEBUG)
|
|---|
| 10 | INC = ../../inc
|
|---|
| 11 | DEFS =
|
|---|
| 12 |
|
|---|
| 13 | OBJDIR = ../dll
|
|---|
| 14 |
|
|---|
| 15 | OBJECTS = $(INC)\mmres.h mmres$(LANGUAGE).rc \
|
|---|
| 16 | audioplayer$(LANGUAGE).dlg audioplayer$(LANGUAGE).rc \
|
|---|
| 17 | audioconv$(LANGUAGE).dlg audioconv$(LANGUAGE).rc \
|
|---|
| 18 | volume$(LANGUAGE).rc volume$(LANGUAGE).dlg \
|
|---|
| 19 | imageconv$(LANGUAGE).dlg imageconv$(LANGUAGE).rc \
|
|---|
| 20 | cwaudio_de.rc cwaudio_de.dlg cwimage_de.rc cwvideo_de.rc \
|
|---|
| 21 | mmfind$(LANGUAGE).dlg mmfind$(LANGUAGE).rc
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 | all: $(OBJDIR)/mmres$(LANGUAGE).dll mmres$(LANGUAGE).def
|
|---|
| 25 |
|
|---|
| 26 | $(OBJDIR)/mmres$(LANGUAGE).dll: mmres$(LANGUAGE).c $(OBJECTS) mmres$(LANGUAGE).def
|
|---|
| 27 | icc $(CPPFLAGS) -I$(INC) /Fe$(OBJDIR)\$@ $< mmres$(LANGUAGE).def
|
|---|
| 28 | rc -D $(ECS) -i $(INC) mmres$(LANGUAGE).rc $(OBJDIR)/mmres$(LANGUAGE).dll
|
|---|
| 29 | # rc mmres$(LANGUAGE).res $(OBJDIR)/mmres$(LANGUAGE).dll
|
|---|
| 30 |
|
|---|
| 31 | #(OBJDIR)/mmres$(LANGUAGE).res: mmres$(LANGUAGE).rc $(OBJECTS)
|
|---|
| 32 | # rc -D $(ECS) -i $(INC) -r mmres$(LANGUAGE).rc
|
|---|
| 33 |
|
|---|
| 34 |
|
|---|
| 35 | restest:
|
|---|
| 36 | echo $(deftext)> test.def
|
|---|
| 37 |
|
|---|
| 38 |
|
|---|
| 39 | clean:
|
|---|
| 40 | -rm $(OBJDIR)/*.obj
|
|---|
| 41 | -rm $(OBJDIR)/*.dll
|
|---|
| 42 | -rm *.*~
|
|---|
| 43 | -rm *.flc
|
|---|
| 44 | -rm *.res
|
|---|
| 45 | -rm *.obj
|
|---|
| 46 |
|
|---|
| 47 |
|
|---|
| 48 |
|
|---|
| 49 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.