CC = gcc
PROG = tftp
OBJS = tftp.o main.o tftpsubs.o
CFLAGS = -O2 -Dsin=x_sin
LDLIBS = -L../portlib -lsocket -lportlib

all: $(PROG)

$(PROG): $(OBJS)

clean:
	rm -f *.o *~ core

clobber: clean
	rm -f $(PROG)
