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
modified: myjupyterlab.sh
[GalaxyCodeBases.git]
/
c_cpp
/
lib
/
natsort
/
Makefile
blob
040c8c7b81cabc3073d607797f6dd1fe9d12c574
1
CFLAGS
= -
Wall
-
g
-
Werror
2
3
OBJS
=
strnatcmp.o natsort.o
4
5
.PHONY
:
analyze
clean test
6
7
natsort
: $(
OBJS
)
8
$(
CC
) -
o
$
@
$(
OBJS
)
9
10
test
:
natsort
11
@bash .
/
run-tests.bash
12
13
analyze
:
clean
14
scan-build
--
status-bugs make
15
16
clean
:
17
rm
-
f natsort
$(
OBJS
)