1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
## -----------------------------------------------------------------------
##
## Copyright 2001-2008 H. Peter Anvin - All Rights Reserved
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation, Inc., 53 Temple Place Ste 330,
## Boston MA 02111-1307, USA; either version 2 of the License, or
## (at your option) any later version; incorporated herein by reference.
##
## -----------------------------------------------------------------------
##
## memory dump utility
##
topdir = ..
include $(topdir)/MCONFIG.embedded
OPTFLAGS =
INCLUDES = -include code16.h -I.
LDFLAGS = -T com16.ld
SRCS = main.c serial.c ymsend.c srecsend.c
OBJS = crt0.o $(patsubst %.c,%.o,$(notdir $(SRCS)))
LIBOBJS = conio.o memcpy.o memset.o skipatou.o strtoul.o \
argv.o printf.o __divdi3.o __udivmoddi4.o
.SUFFIXES: .c .o .i .s .S .elf .com
TARGETS = memdump.com
all: $(TARGETS)
tidy dist:
-rm -f *.o *.i *.s *.a .*.d *.tmp *.elf
clean: tidy
spotless: clean
-rm -f *~ $(TARGETS)
installer:
memdump.elf: $(OBJS) libcom.a
$(LD) $(LDFLAGS) -o $@ $^
libcom.a: $(LIBOBJS)
-rm -f $@
$(AR) cq $@ $^
$(RANLIB) $@
memdump.com: memdump.elf
$(OBJCOPY) -O binary $< $@
%.o: %.c
$(CC) $(MAKEDEPS) $(CFLAGS) -c -o $@ $<
%.i: %.c
$(CC) $(MAKEDEPS) $(CFLAGS) -E -o $@ $<
%.s: %.c
$(CC) $(MAKEDEPS) $(CFLAGS) -S -o $@ $<
%.o: %.S
$(CC) $(MAKEDEPS) $(SFLAGS) -c -o $@ $<
%.s: %.S
$(CC) $(MAKEDEPS) $(SFLAGS) -E -o $@ $<
-include .*.d *.tmp
|