source: thomson/tools/gfx2mo5/makefile@ 99bc67a

main
Last change on this file since 99bc67a was 99bc67a, checked in by Adrien Destugues <pulkomandy@…>, 12 years ago

Add PNG to MO5 converter.

git-svn-id: svn://localhost/thomson@20 85ae3b6b-dc8f-4344-a89d-598714f2e4e5

  • Property mode set to 100644
File size: 354 bytes
Line 
1ALL= raw2mo5 png2mo5
2
3
4CC=gcc
5CCFLAGS=-Os -W -Wall -g
6#CCFLAGS=-O3 -W -Wall -pedantic -ansi
7
8all: $(ALL)
9
10clear :
11 rm -f a.out *.o core $(ALL)
12raw2mo5 : raw2mo5.o libraw2mo5.o
13 $(CC) $(CCFLAGS) raw2mo5.o libraw2mo5.o -o raw2mo5
14png2mo5 : png2mo5.o libraw2mo5.o
15 $(CC) $(CCFLAGS) png2mo5.o libraw2mo5.o -o png2mo5 -lpng -lz
16.c.o :
17 $(CC) $(CCFLAGS) -c $<
Note: See TracBrowser for help on using the repository browser.