From: Nathaniel Wesley Filardo Date: Mon, 22 Feb 2010 01:55:51 +0000 (-0500) Subject: Remove stale makefiles X-Git-Url: https://hydra-www.ietfng.org/gitweb/?a=commitdiff_plain;h=214ddc8bbb4cc8d0a4af6f954a6748aa02e6c6d6;p=acmetensortoys-chiptunes Remove stale makefiles --- diff --git a/target/Makefile b/target/Makefile deleted file mode 100644 index 0743d75..0000000 --- a/target/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -all: flash.hex - -flash.o: main.c asm.S ../tracker/exported.s - avr-gcc -Xlinker -Tdata -Xlinker 0x800160 -Xlinker -M -O2 -B/usr/avr/lib -I/usr/local/avr/include -Wall -mmcu=avr4 -D__AVR_ATmega88__ -o $@ $^ >mapfile - -flash.hex: flash.o - avr-ld --oformat ihex -o $@ $^ diff --git a/tracker/Makefile b/tracker/Makefile deleted file mode 100644 index c091378..0000000 --- a/tracker/Makefile +++ /dev/null @@ -1,10 +0,0 @@ -LDFLAGS=-lSDL -lncurses -CFLAGS=-Wall -CC=gcc - -all: tracker - -tracker: main.o chip.o gui.o - gcc -o $@ $^ ${LDFLAGS} - -%.o: %.c stuff.h Makefile