head 1.2; access; symbols; locks; strict; comment @# @; 1.2 date 2005.12.10.14.03.33; author macslow; state Exp; branches; next 1.1; commitid 14eb439adf824567; 1.1 date 2005.09.30.10.04.11; author macslow; state Exp; branches; next ; commitid 5ce2433d0c934567; desc @@ 1.2 log @Added two new cairo-hacks/samples, made cairo-in-motion use cairomm-0.2.0 and added a slider controlling the "smoothness" (read: updates per second) of the animation @ text @APP=cairo-in-motion CC=c++ #CFLAGS= -Wall -Os `pkg-config --cflags cairomm-1.0 libsvg-cairo gtkmm-2.4 libglademm-2.4` CFLAGS= -Wall -g2 `pkg-config --cflags cairomm-1.0 libsvg-cairo gtkmm-2.4 libglademm-2.4` LDFLAGS= `pkg-config --libs cairomm-1.0 libsvg-cairo gtkmm-2.4 libglademm-2.4` SRC = main.cpp \ cairo-samples.cpp \ sample-list-store.cpp OBJ = $(SRC:.cpp=.o) all: $(APP) $(APP): $(OBJ) $(CC) $(LDFLAGS) $(OBJ) -o $(APP) #strip $(APP) .cpp.o: $(CC) $(CFLAGS) -c $< -o $@@ clean: rm -f $(OBJ) *~ $(APP) @ 1.1 log @a little learning toy usable for testing out code-smidgens of cairo-effects @ text @d4 2 a5 1 CFLAGS= -Wall -Os `pkg-config --cflags libsvg-cairo gtkmm-2.4 libglademm-2.4` d7 1 a7 1 LDFLAGS= `pkg-config --libs libsvg-cairo gtkmm-2.4 libglademm-2.4` d19 1 a19 1 strip $(APP) @