Add a sample application that runs on unix.
git-svn-id: http://skia.googlecode.com/svn/trunk@938 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/unix_test_app/makefile b/unix_test_app/makefile
new file mode 100644
index 0000000..0690435
--- /dev/null
+++ b/unix_test_app/makefile
@@ -0,0 +1,36 @@
+# 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:../out:../src/utils/unix
+
+#generate debugging info
+CFLAGS = -g
+
+SRC_LIST := main.cpp SkOSWindow_Unix.cpp SkXMLParser_empty.cpp SkDebug.cpp keysym2ucs.c
+
+#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))
+
+output: $(SRC_LIST) -lX11 -lskia -lpthread -lz -lfreetype -lGL -lpng
+ g++ $(C_INCLUDES) $(CFLAGS) $^ -o $@
+