Codebase list eapmd5pass / run/f57ab3f5-586f-46e0-b436-a78d3d72cdd4/main Makefile
run/f57ab3f5-586f-46e0-b436-a78d3d72cdd4/main

Tree @run/f57ab3f5-586f-46e0-b436-a78d3d72cdd4/main (Download .tar.gz)

Makefile @run/f57ab3f5-586f-46e0-b436-a78d3d72cdd4/mainraw · history · blame

CFLAGS		= -pipe -Wall -O2 -ggdb -g3
LDLIBS		= -lpcap -lcrypto
PROG		= eapmd5pass
PROGOBJ		= utils.o

all: $(PROGOBJ) $(PROG) 

utils.o: utils.c utils.h
	$(CC) $(CFLAGS) -c utils.c

eapmd5pass: eapmd5pass.c eapmd5pass.h utils.c utils.h
	$(CC) $(CFLAGS) -o eapmd5pass $(PROGOBJ) eapmd5pass.c $(LDLIBS)

clean:
	$(RM) $(PROG) $(PROGOBJ) *~

strip:
	@strip $(PROG)