Mercurial > MadButterfly
view src/Makefile.pmake @ 887:8a2d676d9fa3 abs_n_rel_center
Fix bug of clearing COF_TEMP_MARK.
draw_shapes_in_dirty_areas() mark COF_TEMP_MARK on coords and clear
them before leaving. But, it always clear the same one coord for
several times and keep others untouched. It is a logical error. It
can be avoided by avoiding to use the variable at mutliple place for
different purpose in a function, and compiler will check it out by
yelling that the variable is used before assigning a value.
author | Thinker K.F. Li <thinker@codemud.net> |
---|---|
date | Sun, 26 Sep 2010 14:07:05 +0800 |
parents | 586e50f82c1f |
children |
line wrap: on
line source
# -*- indent-tabs-mode: t; tab-width: 8; c-basic-offset: 4; -*- # vim: sw=4:ts=8:sts=4 SRCS = coord.c geo.c shape_path.c shape_text.c shape_rect.c \ shape_image.c \ redraw_man.c timer.c animate.c paint.c event.c observer.c \ X_supp.c timertool.c tools.c shift.c chgcolor.c \ visibility.c rotate.c prop.c mouse.c img_ldr.c OBJS = ${SRCS:C/(.*)\.c/\1.o/g} TESTCASE_SRCS = ${SRCS:C/X_supp\.c//} TESTCASE_OBJS = ${TESTCASE_SRCS:C/(.*)\.c/testcase-\1.o/g} CFLAGS+= -Wall -I../include -I/usr/local/include \ `pkg-config --cflags cairo` LDFLAGS = `pkg-config --libs cairo` BINS = libmbfly.a X_main PREFIX?=/usr/local/ HEADERS= X_supp.h animate.h mb.h mb_timer.h mb_types.h \ observer.h paint.h redraw_man.h shapes.h tools.h MKDIR?= mkdir -p all: $(BINS) install: $(BINS) $(INSTALL) -d ${PREFIX}include/mb .for i in $(HEADERS) $(INSTALL) -o root -m 0644 ${i} ${PREFIX}include/mb/ .endfor $(INSTALL) -o root libmbfly.a ${PREFIX}lib/ uninstall: .for i in $(HEADERS) rm -f ${PREFIX}include/mb/${i} .endfor rm -f ${PREFIX}lib/libmbfly.a rmdir ${PREFIX}include/mb/ testcase: testcase.o $(TESTCASE_OBJS) $(CC) $(LDFLAGS) -o $@ $(.ALLSRC) -L/usr/local/lib -lcunit libmbfly.a: $(OBJS) $(AR) -cr $@ $(.ALLSRC) .for i in $(TESTCASE_OBJS) ${i}: ${i:C/testcase-(.*).o/\1.c/} $(CC) $(CFLAGS) -DUNITTEST -g -c -o $@ $(.ALLSRC) .endfor testcase.o: testcase.c $(CC) $(CFLAGS) -c $(.ALLSRC) X_main: X_main.o libmbfly.a $(CC) $(CFALGS) `pkg-config --libs cairo` -o $@ $(.ALLSRC) X_main.o: X_main.c $(CC) $(CFLAGS) `pkg-config --cflags cairo` -c $(.ALLSRC) clean: for i in *.o *~ *.core $(SHAPE_OBJS) $(BINS) testcase; do \ echo "delete $$i"; \ rm -f $$i; \ done depend: mkdep $(CFLAGS) $(SRCS)