95dc5b97dc
Dice is Matt Dillon's (yes, our FreeBSD guru :) portable 68000 C Compiler. Found it odd that there's not a port for this, considering that the author of the compiler is a FreeBSD commiter. PR: 34449 Submitted by: flynn@energyhq.homeip.net
13 lines
227 B
Makefile
13 lines
227 B
Makefile
# Makefile for dice
|
|
# Created by Miguel Mendez <flynn@energyhq.homeip.net>
|
|
# $FreeBSD$
|
|
|
|
DCCOPTS= -3.0 -//
|
|
DINCLUDE= `pwd`/include/
|
|
|
|
all:
|
|
cd suplib && ${MAKE} && ${MAKE} install
|
|
cd src && ${MAKE} && ${MAKE} install
|
|
|
|
install:
|