Last change
on this file was 148, checked in by gyoung, 21 months ago |
Automate building of all def files. Some minor code and makefile cleanup
|
File size:
467 bytes
|
Rev | Line | |
---|
[2] | 1 | #
|
---|
| 2 | # Compiled with VAC++ 3.08
|
---|
| 3 | # (other compilers should do the job after minor tweaking)
|
---|
| 4 |
|
---|
| 5 | CC = icc
|
---|
| 6 | CPPFLAGS = /Ge- /Gm+ /G4 /Gl /O+ /Oc+ /Ol- /Q+ $(VACDEBUG)
|
---|
| 7 |
|
---|
| 8 | all: cddbpage.dll
|
---|
| 9 |
|
---|
| 10 | cddbpage.dll: cddbpage.obj cddbpage.def
|
---|
| 11 | # ILINK /NOFREE cddbpage.obj,cddbpage.dll,,,cddbpage.def;
|
---|
| 12 |
|
---|
| 13 | cddbpage.obj: cddbpage.c
|
---|
| 14 | icc $(CPPFLAGS) cddbpage.c mmPM2.lib cddbpage.def
|
---|
| 15 |
|
---|
| 16 | clean:
|
---|
| 17 | -rm *.o
|
---|
| 18 | -rm *.obj
|
---|
| 19 |
|
---|
| 20 | cleaner:
|
---|
| 21 | -rm *.*~
|
---|
| 22 | -rm *.flc
|
---|
| 23 |
|
---|
| 24 | distribution:
|
---|
Note:
See
TracBrowser
for help on using the repository browser.