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

all: $(PROG)

$(PROG): $(OBJS)

clean:
	rm -f *.o *~ core

clobber: clean
	rm -f $(PROG)
