APG v2.2.0
This commit is contained in:
29
bfconvert/Makefile
Normal file
29
bfconvert/Makefile
Normal file
@@ -0,0 +1,29 @@
|
||||
##################################################################
|
||||
# You can modify CC variable if you have compiler other than GCC
|
||||
# But the code was designed and tested with GCC
|
||||
CC = gcc
|
||||
|
||||
##################################################################
|
||||
# Compilation flags
|
||||
# You should comment the line below for AIX+native cc
|
||||
FLAGS = -Wall
|
||||
|
||||
ECHO = echo
|
||||
PROGNAME = bfconvert
|
||||
SOURCES = bfconvert.c
|
||||
|
||||
all:
|
||||
${CC} ${FLAGS} -o ${PROGNAME} ${SOURCES}
|
||||
|
||||
strip:
|
||||
strip ${PROGNAME}
|
||||
|
||||
install:
|
||||
@${ECHO} "**********************************************"
|
||||
@${ECHO} "* This program shold be used to convert your *"
|
||||
@${ECHO} "* filters once. So if you want to install *"
|
||||
@${ECHO} "* this program you have to do it manualy :-) *"
|
||||
@${ECHO} "**********************************************"
|
||||
|
||||
clean:
|
||||
rm -f ${PROGNAME} *.o *core
|
||||
Reference in New Issue
Block a user