source: svn/trunk/zas_dstar/build/bmpbin2src/Makefile @ 2

Last change on this file since 2 was 2, checked in by phkim, 11 years ago

1.phkim

  1. revision copy newcon3sk r27
File size: 405 bytes
Line 
1CC = gcc
2CFLAGS  =
3
4OBJS = \
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
16all: bmp2src bin2src png2src
17
18bmp2src : bmp2src.o $(OBJS)
19        gcc -o ../bmp2src bmp2src.o $(OBJS)
20       
21bin2src : bin2src.o $(OBJS)
22        gcc -o ../bin2src bin2src.o $(OBJS)
23
24png2src : png2src.o $(OBJS)
25        g++ -o ../png2src png2src.o
26       
27clean :
28        rm -rf *.o
Note: See TracBrowser for help on using the repository browser.