Browse Source

add missing 'install' target; add 'all' target to MSVC makefile

pull/1639/head
bsp2 6 years ago
parent
commit
9fdeceab21
2 changed files with 24 additions and 0 deletions
  1. +2
    -0
      makefile.linux
  2. +22
    -0
      makefile.msvc

+ 2
- 0
makefile.linux View File

@@ -41,12 +41,14 @@ clean:
dep: dep:
make -C dep -f makefile.linux clean make -C dep -f makefile.linux clean
make -C dep -f makefile.linux bin make -C dep -f makefile.linux bin
make -C dep -f makefile.linux install


# do a complete rebuild: # do a complete rebuild:
.PHONY: all .PHONY: all
all: all:
make -C dep -f makefile.linux clean make -C dep -f makefile.linux clean
make -C dep -f makefile.linux bin make -C dep -f makefile.linux bin
make -C dep -f makefile.linux install
make -f makefile.linux clean make -f makefile.linux clean
make -f makefile.linux shared_lib make -f makefile.linux shared_lib
make -C plugins -f makefile.linux clean make -C plugins -f makefile.linux clean


+ 22
- 0
makefile.msvc View File

@@ -4,6 +4,8 @@
# #


NUM_JOBS=20 NUM_JOBS=20
#NUM_JOBS=1
#NUM_JOBS=$(NUM_PROCESSORS)


.PHONY: bin .PHONY: bin
bin: vst bin: vst
@@ -34,3 +36,23 @@ clean:
make -f makefile_vst_instr.msvc clean make -f makefile_vst_instr.msvc clean
make -f makefile_vst_effect.msvc clean make -f makefile_vst_effect.msvc clean


# rebuild dependencies:
.PHONY: dep
dep:
make -C dep -f makefile.msvc clean
make -C dep -f makefile.msvc bin
make -C dep -f makefile.msvc install

# do a complete rebuild:
.PHONY: all
all:
make -C dep -f makefile.msvc clean
make -C dep -f makefile.msvc bin
make -C dep -f makefile.msvc install
make -f makefile.msvc clean
make -f makefile.msvc shared_lib
make -C plugins -f makefile.msvc clean
make -C plugins -f makefile.msvc bin
make -f makefile.msvc clean
make -f makefile.msvc lib
make -f makefile.msvc bin

Loading…
Cancel
Save