comparison src/Makefile.pmake @ 257:50d253d0fcba

Simple image loader and image shape. - img_ldr.c is a simple image loader that rooted on a directory specified when a loader instance been created. - sh_image_t is corresponding shape of image tag in SVG. - This changeset is still buggy. It need more testing. - svg2code.py is not ready for image tag.
author Thinker K.F. Li <thinker@branda.to>
date Thu, 15 Jan 2009 16:46:47 +0800
parents 65cabbdd5284
children 586e50f82c1f
comparison
equal deleted inserted replaced
256:cac9ad3df633 257:50d253d0fcba
1 SRCS = coord.c geo.c shape_path.c shape_text.c shape_rect.c \ 1 SRCS = coord.c geo.c shape_path.c shape_text.c shape_rect.c \
2 shape_image.c \
2 redraw_man.c timer.c animate.c paint.c event.c observer.c \ 3 redraw_man.c timer.c animate.c paint.c event.c observer.c \
3 X_supp.c timertool.c tools.c shift.c chgcolor.c \ 4 X_supp.c timertool.c tools.c shift.c chgcolor.c \
4 visibility.c rotate.c prop.c mouse.c 5 visibility.c rotate.c prop.c mouse.c img_ldr.c
5 OBJS = ${SRCS:C/(.*)\.c/\1.o/g} 6 OBJS = ${SRCS:C/(.*)\.c/\1.o/g}
6 TESTCASE_SRCS = ${SRCS:C/X_supp\.c//} 7 TESTCASE_SRCS = ${SRCS:C/X_supp\.c//}
7 TESTCASE_OBJS = ${TESTCASE_SRCS:C/(.*)\.c/testcase-\1.o/g} 8 TESTCASE_OBJS = ${TESTCASE_SRCS:C/(.*)\.c/testcase-\1.o/g}
8 CFLAGS+= -Wall -I../include -I/usr/local/include \ 9 CFLAGS+= -Wall -I../include -I/usr/local/include \
9 `pkg-config --cflags cairo` 10 `pkg-config --cflags cairo`