|
Revision 1881, 1.6 kB
(checked in by mattn, 12 months ago)
|
|
lang/c/sonydb/frontend.cpp,
lang/c/sonydb/Makefile.w32:
added message dialog 'Can't detect devices!'.
|
| Line | |
|---|
| 1 | GTK_CFLAGS=-IC:/gtk/include/gtk-2.0 -IC:/gtk/lib/gtk-2.0/include -IC:/gtk/include/atk-1.0 -IC:/gtk/include/cairo -IC:/gtk/include/pango-1.0 -IC:/gtk/include/glib-2.0 -IC:/gtk/lib/glib-2.0/include
|
|---|
| 2 | GTK_LDFLAGS=-libpath:C:/gtk/lib gtk-win32-2.0.lib gdk-win32-2.0.lib atk-1.0.lib gdk_pixbuf-2.0.lib pangowin32-1.0.lib gdi32.lib pangocairo-1.0.lib fontconfig.lib freetype.lib zlib.lib pango-1.0.lib cairo.lib gobject-2.0.lib gmodule-2.0.lib glib-2.0.lib intl.lib iconv.lib
|
|---|
| 3 |
|
|---|
| 4 | all : sonydb.exe
|
|---|
| 5 | @echo done.
|
|---|
| 6 |
|
|---|
| 7 | sonydb.exe : sonydb.obj frontend.obj sonydb.res
|
|---|
| 8 | link /out:sonydb.exe sonydb.obj frontend.obj sonydb.res /libpath:id3lib id3lib.lib zlib.lib /nodefaultlib:libcmt
|
|---|
| 9 |
|
|---|
| 10 | sonydb.obj : sonydb.cpp sonydb.h
|
|---|
| 11 | cl -c -GX -MD sonydb.cpp
|
|---|
| 12 |
|
|---|
| 13 | frontend.obj : sonydb.h frontend.cpp
|
|---|
| 14 | cl -DID3LIB_LINKOPTION=1 -Iid3lib/include -c -GX -MD frontend.cpp
|
|---|
| 15 |
|
|---|
| 16 | sonydb.res : sonydb.rc
|
|---|
| 17 | rc sonydb.rc
|
|---|
| 18 |
|
|---|
| 19 | gui : sonydb.obj images.h
|
|---|
| 20 | cl -DID3LIB_LINKOPTION=1 -Iid3lib/include -DGUI $(GTK_CFLAGS) -c -GX -MD frontend.cpp
|
|---|
| 21 | link /out:sonydb.exe sonydb.obj frontend.obj sonydb.res /libpath:id3lib id3lib.lib zlib.lib $(GTK_LDFLAGS) /nodefaultlib:libcmt
|
|---|
| 22 |
|
|---|
| 23 | hoge :
|
|---|
| 24 | cl -DID3LIB_LINKOPTION=3 -Iid3lib/include -DGUI $(GTK_CFLAGS) -GX hoge.c /link -libpath:C:/gtk/lib gtk-win32-2.0.lib gdk-win32-2.0.lib atk-1.0.lib gdk_pixbuf-2.0.lib pangowin32-1.0.lib gdi32.lib pangocairo-1.0.lib fontconfig.lib freetype.lib pango-1.0.lib cairo.lib gobject-2.0.lib gmodule-2.0.lib glib-2.0.lib intl.lib iconv.lib
|
|---|
| 25 |
|
|---|
| 26 | clean :
|
|---|
| 27 | -@del *.obj *.o *.exe *.res *.aps *.ncb *.opt *.plg
|
|---|
| 28 | -@rm *.obj *.o *.exe *.res *.aps *.ncb *.opt *.plg
|
|---|