File: Makefile

package info (click to toggle)
afio 2.5.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 768 kB
  • sloc: ansic: 4,972; sh: 139; makefile: 75; awk: 19
file content (20 lines) | stat: -rw-r--r-- 407 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
CC=gcc

all: cmpstat
	 bash ./regtest

cmpstat: cmpstat.c
	gcc -o cmpstat cmpstat.c

2gb:
	gcc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE makesparse.c   -o makesparse
	bash  ./regtest2gb

sizeof:
	gcc statsize.c   -o statsize
	gcc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE statsize.c   -o statsize64
	echo normal compile env:
	./statsize
	echo large file compile env:
	./statsize64
	rm statsize statsize64