source:
svn/trunk/zas_dstar/build/bmpbin2src/Makefile
| Last change on this file was 2, checked in by phkim, 11 years ago | |
|---|---|
| File size: 405 bytes | |
| Line | |
|---|---|
| 1 | CC = gcc |
| 2 | CFLAGS = |
| 3 | |
| 4 | OBJS = \ |
| 5 | adler32.o \ |
| 6 | crc32.o \ |
| 7 | compress.o \ |
| 8 | uncompr.o \ |
| 9 | deflate.o \ |
| 10 | trees.o \ |
| 11 | zutil.o \ |
| 12 | inflate.o \ |
| 13 | inftrees.o \ |
| 14 | inffast.o |
| 15 | |
| 16 | all: bmp2src bin2src png2src |
| 17 | |
| 18 | bmp2src : bmp2src.o $(OBJS) |
| 19 | gcc -o ../bmp2src bmp2src.o $(OBJS) |
| 20 | |
| 21 | bin2src : bin2src.o $(OBJS) |
| 22 | gcc -o ../bin2src bin2src.o $(OBJS) |
| 23 | |
| 24 | png2src : png2src.o $(OBJS) |
| 25 | g++ -o ../png2src png2src.o |
| 26 | |
| 27 | clean : |
| 28 | rm -rf *.o |
Note: See TracBrowser
for help on using the repository browser.
