OpenCores
URL https://opencores.org/ocsvn/s6soc/s6soc/trunk

Subversion Repositories s6soc

[/] [s6soc/] [trunk/] [sw/] [zipos/] [Makefile] - Diff between revs 27 and 29

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 27 Rev 29
################################################################################
################################################################################
##
##
## Filename:    Makefile
## Filename:    Makefile
##
##
## Project:     CMod S6 System on a Chip, ZipCPU demonstration project
## Project:     CMod S6 System on a Chip, ZipCPU demonstration project
##
##
## Purpose:     To coordinate the build of a small ZipOS.
## Purpose:     To coordinate the build of a small ZipOS.
##
##
## Creator:     Dan Gisselquist, Ph.D.
## Creator:     Dan Gisselquist, Ph.D.
##              Gisselquist Technology, LLC
##              Gisselquist Technology, LLC
##
##
################################################################################
################################################################################
##
##
## Copyright (C) 2015-2016, Gisselquist Technology, LLC
## Copyright (C) 2015-2016, Gisselquist Technology, LLC
##
##
## This program is free software (firmware): you can redistribute it and/or
## This program is free software (firmware): you can redistribute it and/or
## modify it under the terms of  the GNU General Public License as published
## modify it under the terms of  the GNU General Public License as published
## by the Free Software Foundation, either version 3 of the License, or (at
## by the Free Software Foundation, either version 3 of the License, or (at
## your option) any later version.
## your option) any later version.
##
##
## This program is distributed in the hope that it will be useful, but WITHOUT
## This program is distributed in the hope that it will be useful, but WITHOUT
## ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
## ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
## FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
## FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
## for more details.
## for more details.
##
##
## You should have received a copy of the GNU General Public License along
## You should have received a copy of the GNU General Public License along
## with this program.  (It's in the $(ROOT)/doc directory, run make with no
## with this program.  (It's in the $(ROOT)/doc directory, run make with no
## target there if the PDF file isn't present.)  If not, see
## target there if the PDF file isn't present.)  If not, see
##  for a copy.
##  for a copy.
##
##
## License:     GPL, v3, as defined and found on www.gnu.org,
## License:     GPL, v3, as defined and found on www.gnu.org,
##              http://www.gnu.org/licenses/gpl.html
##              http://www.gnu.org/licenses/gpl.html
##
##
##
##
################################################################################
################################################################################
##
##
##
##
all:
all:
CROSS   := zip-
CROSS   := zip-
CC      := $(CROSS)gcc
CC      := $(CROSS)gcc
AS      := $(CROSS)as
AS      := $(CROSS)as
OBJDUMP := $(CROSS)objdump
OBJDUMP := $(CROSS)objdump
OBJDIR  := obj-zip
OBJDIR  := obj-zip
DEVSRCSR:= display.c keypad.c rtcsim.c
DEVSRCSR:= display.c keypad.c rtcsim.c
DEVSRCS := $(addprefix ../dev/,$(DEVSRCSR))
DEVSRCS := $(addprefix ../dev/,$(DEVSRCSR))
DEVOBJS := $(addprefix $(OBJDIR)/,$(subst .c,.o,$(DEVSRCSR)))
DEVOBJS := $(addprefix $(OBJDIR)/,$(subst .c,.o,$(DEVSRCSR)))
SOURCES := bootloader.c kernel.c ksetup.c syspipe.c pipesetup.c taskp.c doorbell.c zipsys.c # ziplib.c
SOURCES := bootloader.c kernel.c ksetup.c syspipe.c pipesetup.c taskp.c doorbell.c zipsys.c # ziplib.c
OBJECTS := $(addprefix $(OBJDIR)/,$(subst .c,.o,$(SOURCES))) $(DEVOBJS) $(OBJDIR)/resetdump.o
OBJECTS := $(addprefix $(OBJDIR)/,$(subst .c,.o,$(SOURCES))) $(DEVOBJS) $(OBJDIR)/resetdump.o
HEADERS := $(wildcard *.h) $(subst .c,.h,$(DEVSRCS))
HEADERS := $(wildcard *.h) $(subst .c,.h,$(DEVSRCS))
# CFLAGS  := -O3 -fdump-tree-all -Wall -Wextra -nostdlib -fno-builtin
# CFLAGS  := -O3 -fdump-tree-all -Wall -Wextra -nostdlib -fno-builtin
# CFLAGS  := -O3 -fdump-rtl-all -DZIPOS -Wall -Wextra -nostdlib -fno-builtin
# CFLAGS  := -O3 -fdump-rtl-all -DZIPOS -Wall -Wextra -nostdlib -fno-builtin
CFLAGS  := -O3 -DZIPOS -Wall -Wextra -nostdlib -fno-builtin
CFLAGS  := -O3 -DZIPOS -Wall -Wextra -nostdlib -fno-builtin
# CFLAGS  := -Wall -Wextra -nostdlib -fno-builtin
# CFLAGS  := -Wall -Wextra -nostdlib -fno-builtin
LDFLAGS := -T cmodram.ld -Wl,-Map,$(OBJDIR)/doorbell.map
LDFLAGS := -T cmodram.ld -Wl,-Map,$(OBJDIR)/doorbell.map
all: $(OBJDIR)/ doorbell
all: $(OBJDIR)/ doorbell
$(OBJDIR)/:
$(OBJDIR)/:
        @bash -c "if [ ! -e $(OBJDIR) ]; then mkdir -p $(OBJDIR); fi"
        @bash -c "if [ ! -e $(OBJDIR) ]; then mkdir -p $(OBJDIR); fi"
%.o: $(OBJDIR)/%.o
%.o: $(OBJDIR)/%.o
        $(CC) $(CFLAGS) -c $< -o $@
        $(CC) $(CFLAGS) -c $< -o $@
$(OBJDIR)/%.o: %.c
$(OBJDIR)/%.o: %.c
        $(CC) $(CFLAGS) -c $< -o $@
        $(CC) $(CFLAGS) -c $< -o $@
$(OBJDIR)/%.o: ../dev/%.c
$(OBJDIR)/%.o: ../dev/%.c
        $(CC) $(CFLAGS) -c $< -o $@
        $(CC) $(CFLAGS) -c $< -o $@
$(OBJDIR)/%.txt: $(OBJDIR)/%.o
$(OBJDIR)/%.txt: $(OBJDIR)/%.o
        $(OBJDUMP) -d $^ -o $@
        $(OBJDUMP) -d $^ -o $@
$(OBJDIR)/%.s: %.c
$(OBJDIR)/%.s: %.c
        $(CC) -S $(CFLAGS) -c $< -o $@
        $(CC) -S $(CFLAGS) -c $< -o $@
 
 
 
$(OBJDIR)/%.s: ../dev/%.c
 
        $(CC) -S $(CFLAGS) -c $< -o $@
 
 
$(OBJDIR)/resetdump.o: resetdump.s
$(OBJDIR)/resetdump.o: resetdump.s
        $(AS) $^ -o $@
        $(AS) $^ -o $@
doorbell: $(OBJECTS) cmodram.ld
doorbell: $(OBJECTS) cmodram.ld
        $(CC) $(LDFLAGS) $(OBJECTS) -o $@
        $(CC) $(LDFLAGS) $(OBJECTS) -o $@
$(OBJDIR)/doorbell.txt: doorbell
$(OBJDIR)/doorbell.txt: doorbell
        $(OBJDUMP) -d $^ > $@
        $(OBJDUMP) -d $^ > $@
define  build-depends
define  build-depends
        @echo "Building dependency file(s)"
        @echo "Building dependency file(s)"
        @$(CC) $(CPPFLAGS) -MM $(SOURCES) $(DEVSRCS) > $(OBJDIR)/xdepends.txt
        @$(CC) $(CPPFLAGS) -MM $(SOURCES) $(DEVSRCS) > $(OBJDIR)/xdepends.txt
        @sed -e 's/^.*.o: /$(OBJDIR)\/&/' < $(OBJDIR)/xdepends.txt > $(OBJDIR)/depends.txt
        @sed -e 's/^.*.o: /$(OBJDIR)\/&/' < $(OBJDIR)/xdepends.txt > $(OBJDIR)/depends.txt
        @rm $(OBJDIR)/xdepends.txt
        @rm $(OBJDIR)/xdepends.txt
endef
endef
.PHONY: depends
.PHONY: depends
depends: $(OBJDIR)/ tags
depends: $(OBJDIR)/ tags
        $(build-depends)
        $(build-depends)
tags: $(SOURCES) $(HEADERS)
tags: $(SOURCES) $(HEADERS)
        @echo "Generating tags"
        @echo "Generating tags"
        @ctags $(SOURCES) $(DEVSRCS) $(HEADERS)
        @ctags $(SOURCES) $(DEVSRCS) $(HEADERS)
.PHONY: clean
.PHONY: clean
clean:
clean:
        rm -rf $(OBJDIR)/ doorbell
        rm -rf $(OBJDIR)/ doorbell
-include $(OBJDIR)/depends.txt
-include $(OBJDIR)/depends.txt
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.