mirror of
https://github.com/elliotnunn/supermario.git
synced 2024-11-19 00:07:52 +00:00
35 lines
755 B
Makefile
35 lines
755 B
Makefile
#
|
|
# File: Drivers.make
|
|
#
|
|
# Contains: makefile for the drivers in ROM
|
|
#
|
|
# Written by: Kurt Clark
|
|
#
|
|
# Copyright: © 1992-1993 by Apple Computer, Inc., all rights reserved.
|
|
#
|
|
# Change History (most recent first):
|
|
#
|
|
# <SM2> 4/11/93 chp Added SerialDMA.make as a separate entity from Serial.make.
|
|
#
|
|
|
|
SonyDir = {DriverDir}Sony:
|
|
SerialDir = {DriverDir}Serial:
|
|
NewAgeDir = {DriverDir}NewAge:
|
|
IOPDir = {DriverDir}IOP:
|
|
SerialDMADir = {DriverDir}SerialDMA:
|
|
EDiskDir = {DriverDir}EDisk:
|
|
BackLightDir = {DriverDir}BackLight:
|
|
|
|
#include {SonyDir}Sony.make
|
|
|
|
#include {SerialDir}Serial.make
|
|
#include {SerialDMADir}SerialDMA.make
|
|
|
|
#include {NewAgeDir}NewAge.make
|
|
|
|
#include {IOPDir}IOP.make
|
|
|
|
#include {EDiskDir}EDisk.make
|
|
|
|
#include {BackLightDir}Backlight.make
|