mirror of https://github.com/dirtbags/fluffy.git
test is now a make target
This commit is contained in:
parent
44290cf2c1
commit
441f8a014e
|
@ -16,7 +16,5 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Build
|
- name: Build+test
|
||||||
run: make
|
run: make test
|
||||||
- name: Test
|
|
||||||
run: ./test.sh
|
|
||||||
|
|
3
Makefile
3
Makefile
|
@ -27,6 +27,9 @@ install: $(TARGETS) $(SCRIPTS)
|
||||||
uninstall:
|
uninstall:
|
||||||
cd $(PREFIX)/bin && rm -f $(TARGETS) $(SCRIPTS)
|
cd $(PREFIX)/bin && rm -f $(TARGETS) $(SCRIPTS)
|
||||||
|
|
||||||
|
test: $(TARGETS) test.sh
|
||||||
|
./test.sh
|
||||||
|
|
||||||
pmerge: pmerge.o pcap.o
|
pmerge: pmerge.o pcap.o
|
||||||
|
|
||||||
puniq: puniq.o pcap.o
|
puniq: puniq.o pcap.o
|
||||||
|
|
Loading…
Reference in New Issue