summaryrefslogtreecommitdiff
path: root/other/ldistfp/src/Makefile
blob: f5718203643a3b70817a1372db2843b920bfa519 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

#DFLAGS=-O2
DFLAGS=-g -ggdb
CC=cc
CFLAGS=$(DFLAGS) -Wall
OBJS=common.o network.o

all:	ldistfp

clean:
	rm -f *.o ldistfp

ldistfp:	$(OBJS)
		$(CC) $(CFLAGS) -o ldistfp ldistfp.c $(OBJS)
#		strip ldistfp
		mv ldistfp ../bin