Last change
on this file since 10 was 10, checked in by qweitzel, 16 years ago |
dir tools added with pixelmap test program
|
File size:
408 bytes
|
Line | |
---|
1 | CPPFLAGS = -c -Wall -I.
|
---|
2 |
|
---|
3 | all: PixelMapTest
|
---|
4 |
|
---|
5 | Pixel.o: Pixel.cc Pixel.h
|
---|
6 | g++ $(CPPFLAGS) Pixel.cc -o Pixel.o
|
---|
7 |
|
---|
8 | PixelMap.o: PixelMap.cc PixelMap.h
|
---|
9 | g++ $(CPPFLAGS) PixelMap.cc -o PixelMap.o
|
---|
10 |
|
---|
11 | PixelMapTest.o: PixelMapTest.cc
|
---|
12 | g++ $(CPPFLAGS) PixelMapTest.cc -o PixelMapTest.o
|
---|
13 |
|
---|
14 | PixelMapTest: PixelMapTest.o Pixel.o PixelMap.o
|
---|
15 | g++ PixelMapTest.o Pixel.o PixelMap.o -o PixelMapTest
|
---|
16 |
|
---|
17 | clean:
|
---|
18 | rm -f *.o *~ PixelMapTest |
---|
Note:
See
TracBrowser
for help on using the repository browser.