File: Makefile

package info (click to toggle)
hping2 2.rc3-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 756 kB
  • ctags: 951
  • sloc: ansic: 6,706; makefile: 110; sh: 83
file content (10 lines) | stat: -rw-r--r-- 113 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
CC=gcc
CCOPT=-Wall

all: hex2bin

hex2bin: hex2bin.c
	$(CC) $(CCOPT) -o hex2bin hex2bin.c

clean:
	rm -f hex2bin