mirror of
https://github.com/raphnet/4nes4snes
synced 2024-11-11 19:45:02 -05:00
71 lines
2.3 KiB
Makefile
71 lines
2.3 KiB
Makefile
|
# Name: Makefile
|
||
|
# Project: HIDKeys
|
||
|
# Author: Christian Starkjohann
|
||
|
# Creation Date: 2006-02-02
|
||
|
# Tabsize: 4
|
||
|
# Copyright: (c) 2006 by OBJECTIVE DEVELOPMENT Software GmbH
|
||
|
# License: Proprietary, free under certain conditions. See Documentation.
|
||
|
# This Revision: $Id: Makefile,v 1.1 2007-03-25 02:59:30 raph Exp $
|
||
|
|
||
|
UISP = uisp -dprog=stk500 -dpart=atmega8 -dserial=/dev/avr
|
||
|
COMPILE = avr-gcc -Wall -Os -Iusbdrv -I. -mmcu=atmega8 #-DDEBUG_LEVEL=1
|
||
|
COMMON_OBJS = usbdrv/usbdrv.o usbdrv/usbdrvasm.o usbdrv/oddebug.o main.o
|
||
|
|
||
|
OBJECTS = usbdrv/usbdrv.o usbdrv/usbdrvasm.o usbdrv/oddebug.o main.o snes.o devdesc.o
|
||
|
|
||
|
|
||
|
# symbolic targets:
|
||
|
all: main.hex
|
||
|
|
||
|
.c.o:
|
||
|
$(COMPILE) -c $< -o $@
|
||
|
|
||
|
.S.o:
|
||
|
$(COMPILE) -x assembler-with-cpp -c $< -o $@
|
||
|
# "-x assembler-with-cpp" should not be necessary since this is the default
|
||
|
# file type for the .S (with capital S) extension. However, upper case
|
||
|
# characters are not always preserved on Windows. To ensure WinAVR
|
||
|
# compatibility define the file type manually.
|
||
|
|
||
|
.c.s:
|
||
|
$(COMPILE) -S $< -o $@
|
||
|
|
||
|
|
||
|
clean:
|
||
|
rm -f main.hex main.lst main.obj main.cof main.list main.map main.eep.hex main.bin *.o usbdrv/*.o main.s usbdrv/oddebug.s usbdrv/usbdrv.s
|
||
|
|
||
|
# file targets:
|
||
|
main.bin: $(COMMON_OBJS) snes.o devdesc.o
|
||
|
$(COMPILE) -o main.bin $(OBJECTS) -Wl,-Map=main.map
|
||
|
|
||
|
main.hex: main.bin
|
||
|
rm -f main.hex main.eep.hex
|
||
|
avr-objcopy -j .text -j .data -O ihex main.bin main.hex
|
||
|
./checksize main.bin
|
||
|
|
||
|
flash: all
|
||
|
#$(UISP) --erase --upload --verify if=main.hex
|
||
|
$(UISP) --erase --upload if=main.hex
|
||
|
|
||
|
# Fuse high byte:
|
||
|
# 0xc9 = 1 1 0 0 1 0 0 1 <-- BOOTRST (boot reset vector at 0x0000)
|
||
|
# ^ ^ ^ ^ ^ ^ ^------ BOOTSZ0
|
||
|
# | | | | | +-------- BOOTSZ1
|
||
|
# | | | | + --------- EESAVE (don't preserve EEPROM over chip erase)
|
||
|
# | | | +-------------- CKOPT (full output swing)
|
||
|
# | | +---------------- SPIEN (allow serial programming)
|
||
|
# | +------------------ WDTON (WDT not always on)
|
||
|
# +-------------------- RSTDISBL (reset pin is enabled)
|
||
|
# Fuse low byte:
|
||
|
# 0x9f = 1 0 0 1 1 1 1 1
|
||
|
# ^ ^ \ / \--+--/
|
||
|
# | | | +------- CKSEL 3..0 (external >8M crystal)
|
||
|
# | | +--------------- SUT 1..0 (crystal osc, BOD enabled)
|
||
|
# | +------------------ BODEN (BrownOut Detector enabled)
|
||
|
# +-------------------- BODLEVEL (2.7V)
|
||
|
fuse:
|
||
|
$(UISP) --wr_fuse_h=0xc9 --wr_fuse_l=0x9f
|
||
|
|
||
|
|
||
|
|