Skip to content

Commit

Permalink
Some safety whitespace trims, and compatibility (make linux, make
Browse files Browse the repository at this point in the history
win32) restored.
  • Loading branch information
icculus committed Oct 2, 2000
1 parent 6deb51b commit 03c1499
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions BASIClib/Makefile
Expand Up @@ -11,12 +11,18 @@

include default.mak

DYNLIBBASE = libBASIC.so
DYNLIBWHOLE = $(DYNLIBBASE).$(WHOLEVERSION)
DYNLIBMAJOR = $(DYNLIBBASE).$(MAJORVER)
DYNLIBBASE = $(strip libBASIC.so)
DYNLIBWHOLE = $(strip $(DYNLIBBASE).$(WHOLEVERSION))
DYNLIBMAJOR = $(strip $(DYNLIBBASE).$(MAJORVER))

all : $(DYNLIBBASE) console

# compatibility with old make system.
linux : all

# compatibility with old make system.
win32 : all

$(DYNLIBBASE) : $(DYNLIBMAJOR)
ln -sf $(DYNLIBMAJOR) $(DYNLIBBASE)

Expand Down

0 comments on commit 03c1499

Please sign in to comment.