modified: myjupyterlab.sh
[GalaxyCodeBases.git] / c_cpp / lib / natsort / Makefile
blob040c8c7b81cabc3073d607797f6dd1fe9d12c574
1 CFLAGS = -Wall -g -Werror
3 OBJS = strnatcmp.o natsort.o
5 .PHONY: analyze clean test
7 natsort: $(OBJS)
8 $(CC) -o $@ $(OBJS)
10 test: natsort
11 @bash ./run-tests.bash
13 analyze: clean
14 scan-build --status-bugs make
16 clean:
17 rm -f natsort $(OBJS)