# view makefile
#
# We use our own bt_frame.s, the libqptr one is broken
#

CC = cc
CFLAGS = -O
LDFLAGS =
LD  = cc

OBJS = view.o resize.o jcall.o picker.o printview.o \
       menu-text.o menu-choice.o menu_bframe.o bt_frame.o \
       qconfig.o

view_exe : $(OBJS)
        ${LD} ${LDFLAGS} -oview_exe $(OBJS)
