mirror of
https://github.com/erangell/A2NoSlotMIDI.git
synced 2024-10-31 19:05:12 +00:00
49 lines
858 B
Makefile
49 lines
858 B
Makefile
#
|
|
# head.mk
|
|
# Apple2BuildPipelineSample
|
|
#
|
|
# Part of a sample build pipeline for Apple II software development
|
|
#
|
|
# Created by Quinn Dunki on 8/15/14.
|
|
# One Girl, One Laptop Productions
|
|
# http://www.quinndunki.com
|
|
# http://www.quinndunki.com/blondihacks
|
|
#
|
|
|
|
export CC65_HOME := /usr/local/lib/cc65
|
|
|
|
CC65_BIN = /usr/local/bin
|
|
|
|
CL65=$(CC65_BIN)/cl65
|
|
CA65=$(CC65_BIN)/ca65
|
|
CC65=$(CC65_BIN)/cc65
|
|
CO65=$(CC65_BIN)/co65
|
|
|
|
AC=make/AppleCommander.jar
|
|
|
|
SRCDIRS=.
|
|
|
|
MACHINE=apple2
|
|
CPU=6502
|
|
CFLAGS=
|
|
ASMFLAGS=
|
|
LDFLAGS=
|
|
DRIVERS=
|
|
DRVDIR=drivers
|
|
|
|
XCODE_PATH=/Applications/Xcode.app
|
|
XCODE_INFO=$(XCODE_PATH)/Contents/Info.plist
|
|
|
|
CC65_PLUGIN_PATH=$(HOME)/Library/Developer/Xcode/Plug-ins/cc65.ideplugin
|
|
CC65_PLUGIN_INFO=$(CC65_PLUGIN_PATH)/Contents/Info.plist
|
|
|
|
XCODE_PLUGIN_COMPATIBILITY=DVTPlugInCompatibilityUUID
|
|
|
|
|
|
.PHONY: all gen genclean
|
|
|
|
all:
|
|
@make gen
|
|
@make build
|
|
|