source: trunk/src/testing/app/bitplay/libimage/Makefile @ 4

Revision 4, 353 bytes checked in by ajaworski, 13 years ago (diff)

Added modified SAGE sources

  • Property svn:executable set to *
Line 
1MACHINE=$(shell uname -s)
2ifeq ($(MACHINE), SunOS)
3COPTS = -O2 -xchar=u
4else
5COPTS = -O2 -funsigned-char
6endif
7
8INCL = -I.
9CFLAGS = ${COPTS} ${INCL}
10OBJS = close.o filbuf.o flsbuf.o name.o open.o pix.o rdwr.o rle.o row.o # dispimg.o
11TARGET = libimage.a
12
13libimage.a:     ${OBJS}
14        rm -f $@
15        ar r $@ ${OBJS}
16        ranlib $@
17
18clean:
19        rm -f a.out core *.o ${TARGET}
Note: See TracBrowser for help on using the repository browser.