head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	2002.03.17.19.58.51;	author simons;	state Exp;
branches;
next	;


desc
@@


1.1
log
@ifconfig route and ping tested on or1ksim.
@
text
@OBJS = ping.o

CC = or32-uclibc-gcc
LD = or32-uclibc-gcc
STRIP = or32-uclibc-strip

CFLAGS := $(CFLAGS) -Wall -Werror-implicit-function-declaration -D__USE_BSD
LDFLAGS := -r -d

all: ping

ping: $(OBJS)
	$(LD) $(OBJS) $(LDFLAGS) -o $@@
	$(STRIP) -g $@@

clean:
	rm -f *.[oa] *.coff *~ core ping
@
