#	LINUX Makefile for xchange
#
#	Amin Hamdan
#	snOOp@studbox.uni-stuttgart.de
#
# xchange is a program to convert UNIX to DOS text files and the other
# way back - for more information read the README (!)

# Installation directory
# edit to suit your system
DESTINATION	=/usr/bin

# Specify you favorite compiler
#
#CC	= gcc

# tell gnu to optimize for file size and speed
CFLAGS	= -O1

# program name
PROGNAME = xchange


xchange: 
	${CC} ${CFLAGS} xchange.c -o ${PROGNAME}

#install the executable file
install:
	install -m 511 $(PROGNAME) ${DESTINATION}

