[go: up one dir, main page]

Menu

[r9]: / development / cut / Makefile  Maximize  Restore  History

Download this file

19 lines (12 with data), 203 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
TARGETS = cut \
tests
all: $(TARGETS)
cut:
cd src/private/ && $(MAKE)
tests:
cd tests/ && $(MAKE)
run_tests:
@tests/bin/test_cut_functionality
clean:
rm -f lib/*.a
rm -f tests/bin/test_*