1 ################################################################## 2 # You can modify CC variable if you have compiler other than GCC 3 # But the code was designed and tested with GCC 4 CC = gcc 5 6 ################################################################## 7 # Compilation flags 8 # You should comment the line below for AIX+native cc 9 FLAGS = -Wall 10 11 ECHO = echo 12 PROGNAME = bfconvert 13 SOURCES = bfconvert.c 14 15 all: 16 ${CC} ${FLAGS} -o ${PROGNAME} ${SOURCES} 17 18 strip: 19 strip ${PROGNAME} 20 21 install: 22 @${ECHO} "**********************************************" 23 @${ECHO} "* This program shold be used to convert your *" 24 @${ECHO} "* filters once. So if you want to install *" 25 @${ECHO} "* this program you have to do it manualy :-) *" 26 @${ECHO} "**********************************************" 27 28 clean: 29 rm -f ${PROGNAME} *.o *core