source: thomson/code/C/meatracker/Makefile@ 90b6d4b

main
Last change on this file since 90b6d4b was 90b6d4b, checked in by Adrien Destugues <pulkomandy@…>, 11 years ago

Work on MEATrakcer continues with some input and cursor handling.

git-svn-id: svn://localhost/thomson@44 85ae3b6b-dc8f-4344-a89d-598714f2e4e5

  • Property mode set to 100644
File size: 532 bytes
Line 
1.SECONDARY:
2all: obj/tracker.K5
3 cp obj/tracker.K5 ../../../../mo5/dcmo5/software/tracker.K7
4
5obj/tracker.bin:: obj/main.o obj/display.o obj/text.o obj/font_hs2.o obj/input.o
6
7###############################################################################
8CC=m6809-thomson-none-gcc
9CFLAGS=-O3 -save-temps=obj -Wall -std=gnu99
10
11obj/%.K5: obj/%.bin
12 f2k5 $<
13 mv FILE.K5 $@
14
15obj/%.bin:
16 lwlink --decb --output=$@ --map=$@.map --script=MO5.script $^
17
18obj/%.o : %.c
19 $(CC) $(CFLAGS) -I. -c -o $@ $^
20
21obj/%.o: %.s
22 lwasm -9 -fobj -o$@ $^
Note: See TracBrowser for help on using the repository browser.