File: tinytest.Makefile

package info (click to toggle)
libhmsbeagle 4.0.1%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 46,424 kB
  • sloc: xml: 133,356; cpp: 36,477; ansic: 5,842; java: 2,400; python: 643; sh: 342; makefile: 50
file content (14 lines) | stat: -rw-r--r-- 261 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CPP 		= g++
CPP_FLAGS 	= -g -O0 -I. -I../../include
LD_FLAGS	= -L../../lib/

.cpp.o:
	$(CPP) $(CPP_FLAGS) -c $*.cpp
	
tinytest: tinytest.o ../../src/beagle.o
	$(CPP) -o tinytest beagle.o tinytest.o ../../lib/BeagleCPUImpl.o
	
clean:
	rm -f *.o
	rm -f tinytest