1# @(#)makefile	1.1	10/21/84
2#
3# Makefile for the SUN Gremlin picture editor.
4#
5# Mark Opperman (opcode@monet.BERKELEY)
6
7CC = 		cc
8
9CFLAGS =	-fsingle
10
11OBJ =		db.o graphics.o graphics2.o pix.o icondata.o sun.o\
12		menu.o point.o undodb.o long1.o long2.o short.o help.o\
13        	display.o path.o text.o strings.o startup.o main.o
14
15all:            gremlin
16
17gremlin:        ${OBJ}
18		${CC} ${OBJ} ${CFLAGS} -lm -lsuntool -lsunwindow -lpixrect \
19		-o gremlin
20