Browse Source

Give make information when used without arguments

Signed-off-by: falkTX <falktx@falktx.com>
tags/v1.0.0
falkTX 5 years ago
parent
commit
740b45f274
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 5 additions and 4 deletions
  1. +3
    -3
      Makefile
  2. +2
    -1
      Makefile.mk

+ 3
- 3
Makefile View File

@@ -5,15 +5,15 @@
#

all:
# $(info usage: ${0} 32|64)
@echo "error: you must pass '32' or '64' as an argument to this Makefile in order to build WineASIO"

# ---------------------------------------------------------------------------------------------------------------------

32:
$(MAKE) ARCH=i386 M=32
$(MAKE) build ARCH=i386 M=32

64:
$(MAKE) ARCH=x86_64 M=64
$(MAKE) build ARCH=x86_64 M=64

# ---------------------------------------------------------------------------------------------------------------------



+ 2
- 1
Makefile.mk View File

@@ -83,7 +83,8 @@ C_SRCS = $(wineasio_dll_C_SRCS)

### Generic targets

all: rtaudio/include/asio.h $(DLLS:%=build$(M)/%.so)
all:
build: rtaudio/include/asio.h $(DLLS:%=build$(M)/%.so)

### Build rules



Loading…
Cancel
Save