aboutsummaryrefslogtreecommitdiffstats
path: root/src/promisc_check/Makefile
blob: b7bb4e97c2f73657716325376b7e2609cb0ac998 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CC=gcc
NAME=promisc_check

CFLAGS = -ggdb -Wall -Wmissing-prototypes -Wmissing-declarations \
-Wpointer-arith -m486 -O2 -finline-functions -fkeep-inline-functions

OBJ=promisc_check.o

promisc_check: $(OBJ)
	$(CC) $(OBJ) -o $(NAME)

install:
	cp $(NAME) /usr/bin