# Makefile for XLink85, TI85-PC link program for Linux and MS-DOS
# (c) 1996 Jani Halme

# NOTE! If you are compiling for MS-DOS, there's no use trying to
# do 'make clean'. Also, change the output files to end with .exe

CC	= gcc
CFLAGS	= -O2 -Wall 
#CFLAGS = -g -Wall -DDEBUG	# for a lot of info.. ;)

all: 	recv85 send85

recv85:
	$(CC) -o recv85 recv85.c $(CFLAGS)

send85:
	$(CC) -o send85 send85.c $(CFLAGS)

clean:
	rm -f *~ recv85 send85
