File: Makefile

package info (click to toggle)
apg 2.2.3-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 608 kB
  • ctags: 533
  • sloc: ansic: 4,867; php: 744; sh: 194; makefile: 105; perl: 9
file content (29 lines) | stat: -rw-r--r-- 821 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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