2007-09-27 18:02:23 +00:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
GCC="gcc -MM"
|
|
|
|
CFLAGS="-I. \
|
2007-12-06 03:00:10 +00:00
|
|
|
-Isrc \
|
2007-09-27 18:02:23 +00:00
|
|
|
-Ithird_party/lua/include \
|
|
|
|
-Ithird_party/intl \
|
|
|
|
-Ithird_party/libpng \
|
|
|
|
-Ithird_party/zlib \
|
2007-12-05 01:30:50 +00:00
|
|
|
-Ithird_party/jpeg \
|
2007-12-06 03:00:10 +00:00
|
|
|
-Ithird_party/freetype/include \
|
2007-09-27 18:02:23 +00:00
|
|
|
-Ithird_party"
|
|
|
|
|
|
|
|
rm -f makefile.dep
|
|
|
|
|
2007-12-06 03:00:10 +00:00
|
|
|
$GCC $CFLAGS \
|
2007-09-27 18:02:23 +00:00
|
|
|
src/*.c \
|
|
|
|
src/commands/*.c \
|
2007-11-08 00:54:31 +00:00
|
|
|
src/commands/fx/*.c \
|
2007-09-27 18:02:23 +00:00
|
|
|
src/console/*.c \
|
|
|
|
src/core/*.c \
|
|
|
|
src/dialogs/*.c \
|
|
|
|
src/effect/*.c \
|
|
|
|
src/file/*.c \
|
2008-02-29 19:29:49 +00:00
|
|
|
src/file/*/*.c \
|
2007-09-27 18:02:23 +00:00
|
|
|
src/intl/*.c \
|
2007-12-06 03:00:10 +00:00
|
|
|
src/jinete/*.c \
|
2007-09-27 18:02:23 +00:00
|
|
|
src/modules/*.c \
|
|
|
|
src/raster/*.c \
|
|
|
|
src/script/bindings.c src/script/script.c \
|
|
|
|
src/util/*.c \
|
|
|
|
src/widgets/*.c \
|
|
|
|
src/widgets/editor/*.c \
|
|
|
|
| sed -e 's/^\([a-z_\-]*\.o\)/obj\/mingw32\/\1/' >> makefile.dep
|