9os

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit cdd9e137c1662d490ea0e996af4114c4388520ab
parent 7f8801000c32732dbb9ad7c0bc4289254c96bc5e
Author: Dimitris Papastamos <dimitris.papastamos@arm.com>
Date:   Fri, 12 Oct 2018 13:02:08 +0100

Merge "[libtypes] Add gen target from the top level Makefile"
Diffstat:
MMakefile | 3+++
Mscripts/genrscb.sh | 3---
Msrc/Makefile | 3+++
3 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -16,6 +16,9 @@ bin lib: src arch/$(ARCH): FORCE +@cd $@ && $(MAKE) +gen: FORCE + +@cd src && $(MAKE) gen + clean: +@cd src && $(MAKE) clean +@cd arch && $(MAKE) clean diff --git a/scripts/genrscb.sh b/scripts/genrscb.sh @@ -1,8 +1,5 @@ #!/bin/sh -set -e -trap 'rm -f pack_*.c unpack_*.c rscb.h;exit $?' EXIT HUP INT QUIT TERM - for i do case $i in diff --git a/src/Makefile b/src/Makefile @@ -7,6 +7,9 @@ DIRS = $(LIBS) $(IMGS) all: $(IMGS) rmc.o +gen: FORCE + +@cd libtypes && $(MAKE) gen + $(IMGS): $(LIBS) $(DIRS): FORCE