CC = gcc
PROG = tftp
OBJS = tftp.o main.o tftpsubs.o
CFLAGS = -O6 -D__USE_BSD -Dsin=x_sin
LDFLAGS = -s
LDLIBS =

all: $(PROG)

$(PROG): $(OBJS)

clean:
	rm -f *.o *~ core

clobber: clean
	rm -f $(PROG)
