Browse Source

Build: change default make target to test and bypass src (nothing there yet)

heck-rework
heck 3 years ago
parent
commit
3f2f9ee3b3
  1. 11
      Makefile

11
Makefile

@ -5,16 +5,17 @@
.PHONY: all src test install uninstall clean
all: src
#all: src test
all: test
src:
$(MAKE) -C src
#src:
# $(MAKE) -C src
test: src
test:
$(MAKE) -C test
clean:
$(MAKE) -C src clean
# $(MAKE) -C src clean
$(MAKE) -C test clean
install:

Loading…
Cancel
Save