Makefile tweaks for sunos and macos

This commit is contained in:
Andrew Pamment
2018-10-12 15:58:29 +10:00
parent 40c52836f9
commit d4329eb287
9 changed files with 23 additions and 10 deletions

View File

@@ -7,14 +7,14 @@ help:
all:
mkdir -p obj
gmake -C cmnllib -f Makefile.linux
gmake -C oslib_linux
gmake -f Makefile.linux
${MAKE} -C cmnllib -f Makefile.linux
${MAKE} -C oslib_linux
${MAKE} -f Makefile.linux
clean:
gmake -C cmnllib -f Makefile.linux clean
gmake -C oslib_linux clean
gmake -f Makefile.linux clean
${MAKE} -C cmnllib -f Makefile.linux clean
${MAKE} -C oslib_linux clean
${MAKE} -f Makefile.linux clean
freebsd: all

View File

@@ -28,7 +28,7 @@ endif
ifeq ($(OS), Darwin)
CC=cc
CFLAGS=-I/opt/local/include
LDFLAGS=
LDFLAGS=-L/opt/local/lib
endif