File size: 721 Bytes
9913017 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | SRC = Convert.cpp Convolve.cpp Image.cpp ImageIO.cpp ImageIOpng.cpp RefCntMem.cpp
CC = g++
WARN = -W -Wall
OPT ?= -O3
CPPFLAGS = $(OPT) $(WARN)
OBJ = $(SRC:.cpp=.o)
all: libImg.a
libImg.a: $(OBJ)
rm -f libImg.a
ar ruc libImg.a $(OBJ)
ranlib libImg.a
clean:
rm -f $(OBJ) core *.stackdump *.bak
allclean: clean
rm -f libImg.a
depend:
@makedepend -Y -- $(CPPFLAGS) -- $(SRC) 2>> /dev/null
# DO NOT DELETE THIS LINE -- make depend depends on it.
Convert.o: Image.h RefCntMem.h Error.h Convert.h
Convolve.o: Image.h RefCntMem.h Error.h Convert.h Convolve.h
Image.o: Image.h RefCntMem.h Error.h
ImageIO.o: Image.h RefCntMem.h Error.h ImageIO.h
ImageIOpng.o: Image.h RefCntMem.h Error.h
RefCntMem.o: RefCntMem.h
|