File: Makefile

package info (click to toggle)
l7-protocols 20090528-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,372 kB
  • sloc: ansic: 1,128; cpp: 261; sh: 231; makefile: 30
file content (19 lines) | stat: -rw-r--r-- 632 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
all: randchars randprintable test_speed-kernel test_speed-userspace match_kernel

randchars: randchars.c
	gcc -O2 -o randchars randchars.c

randprintable: randprintable.c
	gcc -O2 -o randprintable randprintable.c

test_speed-kernel: test_speed-kernel.c
	gcc -o test_speed-kernel test_speed-kernel.c

test_speed-userspace: test_speed-userspace.cpp l7-parse-patterns.cpp l7-parse-patterns.h
	g++ -Wall -o test_speed-userspace test_speed-userspace.cpp l7-parse-patterns.cpp

match_kernel: match-kernel.c
	gcc -O2 -o match_kernel match-kernel.c

clean:
	rm -f randprintable randchars test_speed-kernel test_speed-userspace match_kernel