# $Id: Makefile,v 1.1.1.1 2000/05/03 14:56:31 komatsu Exp $
CC = gcc
CFLAGS = -O2 -Wall $(shell gtk-config --cflags)
LIBS = $(shell gtk-config --libs)

OBJS = tomoe.o

stroke: $(OBJS)
	$(CC) -o tomoe $(OBJS) $(LIBS)

clean:
	rm -vf core tomoe *.o *~
