source: liacs/pm/Nim_MakeFile/Makefile@ 208

Last change on this file since 208 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)

  • Property svn:executable set to *
File size: 283 bytes
RevLine 
[2]1# Rick van der Zwet
2# Pascal de Vos
3# Programeeropdracht 4
4# De MakeFile
5all: NimStapel.o NimSpel.o nim.o
6 g++ -Wall NimStapel.o NimSpel.o nim.o -o nim
7
8NimStapel.o:
9 g++ -Wall -c NimStapel.cc
10NimSpel.o:
11 g++ -Wall -c NimSpel.cc
12nim.o:
13 g++ -Wall -c nim.cc
14
15clean:
16 rm -f *.o nim
Note: See TracBrowser for help on using the repository browser.