summaryrefslogtreecommitdiff
path: root/code/fe310/Makefile
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2020-02-26 16:16:03 +0100
committerUros Majstorovic <majstor@majstor.org>2020-02-26 16:16:03 +0100
commit682c9588dc3d281cfdca22f0d6470c9f21e4ccad (patch)
tree4ccc40700a11f26d5bdd889dddf184606745fa07 /code/fe310/Makefile
parent819f823ec215d5c9f4ae6c3d05cd9048e22703b7 (diff)
fixed build system
Diffstat (limited to 'code/fe310/Makefile')
-rw-r--r--code/fe310/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/code/fe310/Makefile b/code/fe310/Makefile
index 2f2abae..e37f235 100644
--- a/code/fe310/Makefile
+++ b/code/fe310/Makefile
@@ -2,7 +2,7 @@ include common.mk
CFLAGS += -I./include
-subdirs = drivers gloss metal eos eos/eve
+subdirs = drivers gloss metal eos eos/eve eos/eve/widget
all: libeos.a
@@ -11,7 +11,7 @@ all: libeos.a
libeos.a:
for i in $(subdirs); do \
- (cd $$i && $(MAKE) && cd ..) || exit; \
+ (cd $$i && $(MAKE)) || exit; \
done
rm -f $@
for i in $(subdirs); do \
@@ -20,6 +20,6 @@ libeos.a:
clean:
for i in $(subdirs); do \
- (cd $$i && $(MAKE) clean && cd ..) || exit; \
+ (cd $$i && $(MAKE) clean) || exit; \
done
rm -f *.o *.a