File: tinytest.Makefile

package info (click to toggle)
libhmsbeagle 3.1.2%2Bdfsg-10
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 45,724 kB
  • sloc: xml: 133,356; cpp: 24,230; ansic: 5,842; java: 2,050; python: 570; makefile: 357; sh: 268
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