Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Sep 25, 2023
1 parent 8cb5950 commit 1b9f5ae
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@

PAWPAW_TARGET = win64
PAWPAW_TARGET = linux

ifeq ($(PAWPAW_TARGET),win64)
ifeq ($(PAWPAW_TARGET),macos-universal)
APP_EXT =
SO_EXT = .dylib
else ifeq ($(PAWPAW_TARGET),win64)
APP_EXT = .exe
SO_EXT = .dll
else
APP_EXT =
SO_EXT = .so
endif

# ---------------------------------------------------------------------------------------------------------------------
Expand All @@ -12,8 +18,7 @@ PAWPAW_DIR = ~/PawPawBuilds
PAWPAW_PREFIX = $(PAWPAW_DIR)/targets/$(PAWPAW_TARGET)

BOOTSTRAP_FILES = \
$(PAWPAW_PREFIX)/bin/cxfreeze \
$(PAWPAW_PREFIX)/lib/libhylia.a
$(PAWPAW_PREFIX)/bin/cxfreeze

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

Expand Down Expand Up @@ -282,7 +287,4 @@ $(PAWPAW_PREFIX)/bin/cxfreeze:
$(PAWPAW_PREFIX)/bin/jackd$(APP_EXT):
./PawPaw/bootstrap-mod.sh $(PAWPAW_TARGET)

$(PAWPAW_PREFIX)/lib/libhylia.a:
./PawPaw/bootstrap-mod.sh $(PAWPAW_TARGET)

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

0 comments on commit 1b9f5ae

Please sign in to comment.