summaryrefslogtreecommitdiff
path: root/other/telnetfp-0.1.2/Makefile
blob: af378347ca7112e67da922dbde58bc1ce5d4e10e (plain)
1
2
3
4
5
6
7
8
9
10
CC = g++
CFLAGS = -g -O2 -I. #-lsocket -lnsl

all: telnetfp

telnetfp:
	$(CC) $(CFLAGS) -o telnetfp telnetfp.cpp

clean:
	@rm -rf telnetfp