skia2/unix_test_app/makefile
scroggo b66365f5dd Updates to the unix sample app.
Rather than placing pixels, use XPutImage to place the bitmap on screen.

Modify the color arrangements for 8888 when building the sample app, so
they agree with X.

Add a title to simple sample.

Include SkTouchGesture.



git-svn-id: http://skia.googlecode.com/svn/trunk@963 2bbb7eff-a529-9590-31e7-b0007b416f81
2011-03-18 21:43:03 +00:00

48 lines
1.2 KiB
Makefile

# Build the unix test app
C_INCLUDES := -I../include/core \
-I../include/config \
-I../include/effects \
-I../include/images \
-I../include/utils \
-I../include/views \
-I../include/xml \
-I../include/gpu \
-I../gpu/include \
-I../include/utils/unix \
-I../samplecode
VPATH = libs:../src/ports:../samplecode:../src/core:../src/utils/unix
#generate debugging info
CFLAGS = -g
SRC_LIST := main.cpp SkOSWindow_Unix.cpp SkXMLParser_empty.cpp SkDebug.cpp
#views files
include ../src/views/views_files.mk
SRC_LIST += $(addprefix ../src/views/, $(SOURCE))
#xml
include ../src/xml/xml_files.mk
SRC_LIST += $(addprefix ../src/xml/, $(SOURCE))
#include the samples
include ../samplecode/samplecode_files.mk
SRC_LIST += $(addprefix ../samplecode/, $(SOURCE))
out/output: $(SRC_LIST) out/keysym2ucs.o ../out/libskia.a -lX11 -lpthread -lz -lfreetype -lGL -lpng
g++ $(C_INCLUDES) $(CFLAGS) $^ -o $@
out/keysym2ucs.o: ../src/utils/unix/keysym2ucs.c
@mkdir -p $(dir $@)
@gcc -c $(C_INCLUDES) $(CFLAGS) $^ -o $@
../out/libskia.a:
@$(MAKE) -C ../ SKIA_SAMPLES_FOR_X=true
clean:
rm -rf ../out # Copied from ../Makefile
rm -rf out