File: Makefile

package info (click to toggle)
ruby-tioga 1.19.1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,812 kB
  • sloc: ansic: 39,883; ruby: 17,312; sh: 79; makefile: 32
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 $@ $^