File: Makefile

package info (click to toggle)
libtioga-ruby 1.8-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 9,956 kB
  • ctags: 3,257
  • sloc: ansic: 31,801; ruby: 16,346; sh: 172; makefile: 114
file content (16 lines) | stat: -rw-r--r-- 408 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Makefile for profiling

LIB=-lruby1.8
INCLUDE=-I/usr/lib/ruby/1.8/x86_64-linux/ -I.. -I../..
DVECTOR_C=../../split/Dvector.dvector.c

profile_fancy_read: $(DVECTOR_C) profile_fancy_read.c
	gcc -g -O0 -pg $(LIB) $(INCLUDE) -o $@ $^ 
clean:
	-rm profile_fancy_read fancy_read 

fancy_read: $(DVECTOR_C) fancy_read.c
	gcc -g -O2 $(LIB) $(INCLUDE) -o $@ $^ 

prepare_file: prepare_file.c
	gcc -g -O2 -o $@ $^