FILES	=	win.c db.c comm.c util.c message.c watch.c meta.c metacold.c \
		cold.c edit.c dump.c quit.c watchwin.c template.c stdfunc.c \
		expr.c math.c string.c sort.c select.c calc.c clk_stub.c \
		value.c widgets.c bar_widget.c graph_widget.c tbl_widget.c \
		pic_widget.c cont_widget.c menu_widget.c scroll_widget.c isis.c

OBJECTS	=	win.o db.o comm.o util.o message.o watch.o meta.o metacold.o \
		cold.o edit.o dump.o quit.o watchwin.o template.o stdfunc.o \
		expr.o math.o string.o sort.o select.o calc.o clk_stub.o \
		value.o widgets.o bar_widget.o graph_widget.o tbl_widget.o \
		pic_widget.o cont_widget.o menu_widget.o scroll_widget.o isis.o

TARGETS =	magic.a

include ../make/Makefile.std

magic.a:	$(OBJECTS)
	rm -f magic.a
	ar qv magic.a $(OBJECTS)
	ranlib magic.a

$(OBJECTS):	win.h expr.h
