source: svn/zas_dstar/build/bmpbin2src/Makefile @ 74

Last change on this file since 74 was 74, checked in by phkim, 10 years ago
  1. phkim
  2. zasc
  3. 변경 내용
    • CT_ChMapUpdatePMTAC3AudioDescriptor 메모리 leak 버그 수정
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.