repo.or.cz
/
GalaxyCodeBases.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
limit fstBC to 30bp in Python3 ver.
[GalaxyCodeBases.git]
/
c_cpp
/
aha
/
Makefile
blob
5473ffd76251d960c9671f4bf586eb9fe1ba1d88
1
.PHONY
:
all clean install
2
3
ifndef
PREFIX
4
PREFIX
=/
usr
/
local
5
endif
6
7
BIN
:=$(
DESTDIR
)$(
PREFIX
)/
bin
8
MAN
:=$(
DESTDIR
)$(
PREFIX
)/
man
/
man1
9
10
all
:
aha
11
12
aha
:
aha.c
13
gcc
-
std
=
c99
$(
CFLAGS
) $(
LDFLAGS
) $(
CPPFLAGS
)
aha.c
-
o aha
14
15
clean
:
16
rm
-
f aha
17
18
install
:
aha
19
install
-
d
$(
BIN
)
20
install
aha
$(
BIN
)
21
install
-
d
$(
MAN
)
22
install
aha
.1
$(
MAN
)