source: liacs/da/opdr1/Makefile@ 2

Last change on this file since 2 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
Line 
1CC = g++
2
3CompileParms = -c -Wall -Wno-deprecated
4
5OBJS = test.o list.o queue.o
6
7Opdr: $(OBJS)
8 $(CC) -o Test $(OBJS)
9
10test1.o: test0.cc queue.h
11 $(CC) $(CompileParms) test.cc
12
13queue.o: queue.cc queue.h
14 $(CC) $(CompileParms) queue.cc
15
16clean:
17 rm -f test.o queue.o Test
Note: See TracBrowser for help on using the repository browser.