Last change
on this file since 167 was 2, checked in by Rick van der Zwet, 15 years ago |
Initial import of data of old repository ('data') worth keeping (e.g. tracking
means of URL access statistics)
|
File size:
272 bytes
|
Rev | Line | |
---|
[2] | 1 | CC = g++
|
---|
| 2 |
|
---|
| 3 | CompileParms = -c -Wall -Wno-deprecated
|
---|
| 4 |
|
---|
| 5 | OBJS = test.o list.o queue.o
|
---|
| 6 |
|
---|
| 7 | Opdr: $(OBJS)
|
---|
| 8 | $(CC) -o Test $(OBJS)
|
---|
| 9 |
|
---|
| 10 | test1.o: test0.cc queue.h
|
---|
| 11 | $(CC) $(CompileParms) test.cc
|
---|
| 12 |
|
---|
| 13 | queue.o: queue.cc queue.h
|
---|
| 14 | $(CC) $(CompileParms) queue.cc
|
---|
| 15 |
|
---|
| 16 | clean:
|
---|
| 17 | rm -f test.o queue.o Test
|
---|
Note:
See
TracBrowser
for help on using the repository browser.