1 |
all: ../../EthernetDriverStub.i ../../VideoDriverStub.i |
2 |
|
3 |
clean: |
4 |
-rm *.o hexconv Ethernet Video |
5 |
|
6 |
../../EthernetDriverStub.i: Ethernet hexconv |
7 |
hexconv $< $@ |
8 |
|
9 |
../../VideoDriverStub.i: Video hexconv |
10 |
hexconv $< $@ |
11 |
|
12 |
hexconv: hexconv.cpp |
13 |
mwcc -o hexconv hexconv.cpp |
14 |
|
15 |
Ethernet.o: Ethernet.cpp |
16 |
mwcc -I.. -I../../include -o $@ -c $< |
17 |
|
18 |
Video.o: Video.cpp |
19 |
mwcc -I.. -I../../include -o $@ -c $< |
20 |
|
21 |
Ethernet: Ethernet.o |
22 |
mwldppc -xms -export pragma -nostdentry -nostdlib -o $@ $< |
23 |
|
24 |
Video: Video.o |
25 |
mwldppc -xms -export pragma -nostdentry -nostdlib -o $@ $< |