John-Titor / py68k

M68K emulator based on Musashi, with a Python device model

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Makefile changes to get musashi to compile under FreeBSD

tingox opened this issue · comments

I changed the makefile to get musashi to compile under FreeBSD
tingo@kg-core1$ diff -u Makefile_org Makefile
--- Makefile_org 2018-03-20 00:35:54.729223000 +0100
+++ Makefile 2018-03-20 00:40:04.426807000 +0100
@@ -4,6 +4,9 @@
ifeq "$(OS)" "Darwin"
CC = clang
SO_EXT = dylib
+else ifeq "$(OS)" "FreeBSD"
+CC = clang
+SO_EXT = so
else
CC = gcc
SO_EXT = so
hope this helps.

Thanks, integrated.