# Makefile for the make utility.
# This file is needed for running the 'make teddy' etc.
# commands. Do not delete it.
# N Deepak, deepak@despammed.com.

teddy: teddy-1.0a.o
	gcc -o teddy -lmenu -lpanel -O3 teddy-1.0a.o

teddy-1.0a.o: teddy-1.0a.c
	gcc -c teddy-1.0a.c
install:
	cp teddy teddy.hlp /usr/local/bin
clean:
	rm -f teddy
