mirror of
https://github.com/aseprite/aseprite.git
synced 2024-11-20 14:21:45 +00:00
275181990f
- eye-dropper cursor to editor - JM_SETCURSOR - incremental-search to fileview widget - jgrid widget - JI_SIGNAL_SET_FONT - sprite_getpixel - colorselector widget - test_jlist test - HSV color type - grid, exchange_colors, and eyedropper_tool commands Fixed: - duplication of layers Renamed: - jwidget_add_childs to jwidget_add_children - status_bar to statusbar - tool_bar to toolbar - color_viewer to colorviewer - color_bar to colorbar - color_button to colorbutton - rectfill_exclude to jrectexclude - _graya_getk to _graya_getv - _graya_k_shift to _graya_v_shift Refactoring to color type: - now it's a color_t structure instead of a string (char *) Removed: - mapgen.[ch] - update_global_script_variables routine - JM_CHAR (now it's JM_KEYPRESSED). - README-es.txt - FAQ.txt
35 lines
907 B
Bash
35 lines
907 B
Bash
#! /bin/sh
|
|
|
|
GCC="gcc -MM"
|
|
CFLAGS="-I. \
|
|
-Isrc \
|
|
-Ithird_party/lua/include \
|
|
-Ithird_party/intl \
|
|
-Ithird_party/libpng \
|
|
-Ithird_party/zlib \
|
|
-Ithird_party/jpeg \
|
|
-Ithird_party/freetype/include \
|
|
-Ithird_party"
|
|
|
|
rm -f makefile.dep
|
|
|
|
$GCC $CFLAGS \
|
|
src/*.c \
|
|
src/commands/*.c \
|
|
src/commands/fx/*.c \
|
|
src/console/*.c \
|
|
src/core/*.c \
|
|
src/dialogs/*.c \
|
|
src/effect/*.c \
|
|
src/file/*.c \
|
|
src/file/*/*.c \
|
|
src/intl/*.c \
|
|
src/jinete/*.c \
|
|
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
|