Files
core/DesktopEditor/cximage/jbig/Makefile
Elen.Subbotina e89cf2f58f .....
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@61945 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-20 23:54:34 +03:00

31 lines
678 B
Makefile

# Unix makefile for the JBIG-KIT library
# $Id: Makefile,v 1.9 2004-06-08 15:40:06+01 mgk25 Exp $
# Select an ANSI/ISO C compiler here, GNU gcc is recommended
CC = gcc
# Options for the compiler: A high optimization level is suggested
CFLAGS = -O -Wall -ansi -pedantic
all: libjbig.a tstcodec
tstcodec: tstcodec.c jbig.c jbig.h jbig_tab.o
$(CC) $(CFLAGS) -o tstcodec -DTEST_CODEC tstcodec.c jbig.c \
jbig_tab.o
libjbig.a: jbig.o jbig_tab.o
rm -f libjbig.a
ar rc libjbig.a jbig.o jbig_tab.o
-ranlib libjbig.a
jbig.o: jbig.c jbig.h
test: tstcodec
./tstcodec
t82test.pbm: tstcodec
./tstcodec $@
clean:
rm -f *.o *~ core gmon.out dbg_d\=??.pbm tstcodec t82test.pbm