summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSean Fox <dyntryx@gmail.com>2008-06-27 09:54:55 +0000
committerSean Fox <dyntryx@gmail.com>2008-06-27 09:54:55 +0000
commitf351f35cbac72304f2274a8aebe1812a400a4d43 (patch)
tree14e2732d40e756d162e4c7902234e5285362bbbd /Makefile
parenta6f4c9f7cc7e767bc18827d2b64baa000140a435 (diff)
downloadlibnsbmp-f351f35cbac72304f2274a8aebe1812a400a4d43.tar.gz
libnsbmp-f351f35cbac72304f2274a8aebe1812a400a4d43.tar.bz2
Added ico decoding example
svn path=/branches/dynis/libnsbmp/; revision=4466
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 175ff93..e664bbf 100644
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,7 @@ DESTDIR ?=
.PHONY: all clean docs install uninstall
-all: libnsbmp.a bin/decode_bmp
+all: libnsbmp.a bin/decode_bmp bin/decode_ico
libnsbmp.a: libnsbmp.o libnsbmp.pc
${AR} ${ARFLAGS} libnsbmp.a libnsbmp.o
@@ -37,6 +37,9 @@ libnsbmp.pc: libnsbmp.pc.in
bin/decode_bmp: examples/decode_bmp.c libnsbmp.a
${CC} ${CFLAGS} -o $@ $< libnsbmp.a
+bin/decode_ico: examples/decode_ico.c libnsbmp.a
+ ${CC} ${CFLAGS} -o $@ $< libnsbmp.a
+
docs:
${DOXYGEN}