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

Last change on this file since 44 was 44, checked in by megakiss, 11 years ago

광주방송 OTC 주파수 369Mhz로 변경

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.