# Makefile for CDplayer
# Written by Mark Buckaway
# (C) 1993 DataSoft Communications
# mark@datasoft.north.net
#
# Distributed under the GNU public licence.
#

CFLAGS= -O2
#CFLAGS= -ggdb3
CC=gcc
BINDIR=/usr/local/bin

cdplayer:	cdplayer.o
	$(CC) $(CFLAGS) cdplayer.o -o cdplayer

clean:	
	rm -f *.o core cdplayer

install:
	chmod 700 cdplayer
	cp cdplayer $(BINDIR)
