BlinkenArea - GitList
Repositories
Blog
Wiki
mips_sys
Code
Commits
Branches
Tags
Search
Tree:
47f05ce
Branches
Tags
master
mips_sys
fw
Makefile
begin of ethernet RX implementation, so far only test interface to core, does not meet timing
Stefan Schuermans
commited
47f05ce
at 2012-02-20 21:16:03
Makefile
Blame
History
Raw
SRCS=cyc_cnt.c eth.c lcd.c leds.c main.c switches.c uart.c PERL=perl CC=mipsel-elf-gcc LD=mipsel-elf-ld OBJCOPY=mipsel-elf-objcopy CFLAGS=-Wall -Wextra -mips1 -mno-abicalls LFLAGS=-mips1 BASES=$(patsubst %.c,%,$(SRCS)) DEPS=$(addsuffix .d,$(BASES)) OBJS=$(addsuffix .o,$(BASES)) .PHONY: all clean .SUFFIXES: .SECONDARY: all: rom.vhd ram.0.vhd ram.1.vhd ram.2.vhd ram.3.vhd ifneq ($(MAKECMDGOALS),clean) include deps endif deps: $(DEPS) cat /dev/null $^ >$@ %.d: %.c Makefile $(CC) $(CFLAGS) -M -o $@ $< %.o: %.c Makefile $(CC) $(CFLAGS) -c -o $@ $< %.o: %.s Makefile $(CC) $(CFLAGS) -c -o $@ $< fw.o: $(OBJS) $(LD) $(LFLAGS) -r -o $@ $^ fw: lnk.cmd boot.o fw.o $(LD) $(LFLAGS) -T lnk.cmd -o $@ boot.o fw.o %.bin: fw $(OBJCOPY) -j .$(basename $@) -O binary $< $@ rom.vhd: rom.pl rom.bin $(PERL) rom.pl rom.bin >$@ ram.%.vhd: ram.pl ram.bin $(PERL) ram.pl ram.bin $(patsubst ram.%.vhd,%,$@) >$@ clean: rm -f $(DEPS) $(OBJS) rm -f boot.o fw.o fw rm -f rom.bin rom.vhd rm -f ram.bin ram.[0-3].vhd