Skip to content

Commit 31fdff7

Browse files
author
Xiangfu Liu
committedDec 26, 2011
compile-flickernoise: update
1 parent 99cb54d commit 31fdff7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎compile-flickernoise/Makefile

+5-5
Original file line numberDiff line numberDiff line change
@@ -203,13 +203,13 @@ milkymist-git-update:
203203

204204
#You will need Lemon and RE2C to compile libFPVM.
205205
libfpvm:
206-
(cd $(MILKYMIST_GIT_DIR)/milkymist.git/software/libfpvm/lm32-rtems && make && make install)
206+
make -C $(MILKYMIST_GIT_DIR)/milkymist.git/software/libfpvm/ install
207207

208208
mtk:
209-
(cd $(MILKYMIST_GIT_DIR)/$@.git && make milkymist && make install-milkymist)
209+
make -C $(MILKYMIST_GIT_DIR)/$@.git milkymist install-milkymist
210210

211211
liboscparse:
212-
(cd $(MILKYMIST_GIT_DIR)/$@.git && make && make install)
212+
make -C $(MILKYMIST_GIT_DIR)/$@.git all install
213213

214214
rtems-yaffs2:
215215
(cd $(MILKYMIST_GIT_DIR)/$@.git && make -f Makefile.rtems && make -f Makefile.rtems install)
@@ -225,11 +225,11 @@ $(BUILD_DIR)/bsp-milkymist/Makefile:
225225

226226
#you will need clang for compile milkymist tools
227227
flickernoise.fbi: rtems libfpvm mtk liboscparse rtems-yaffs2 $(BUILD_DIR)/mupdf $(BUILD_DIR)/curl $(BUILD_DIR)/expat
228-
(cd $(MILKYMIST_GIT_DIR)/flickernoise.git/src && make clean bin/flickernoise.fbi)
228+
make -C $(MILKYMIST_GIT_DIR)/flickernoise.git/src clean bin/flickernoise.fbi
229229
cp $(MILKYMIST_GIT_DIR)/flickernoise.git/src/bin/$@ ./
230230

231231
flickernoise-pdf.fbiz: flickernoise.fbi
232-
(cd $(MILKYMIST_GIT_DIR)/flickernoise.git/src && WITH_PDF=1 make clean bin/flickernoise.fbiz)
232+
WITH_PDF=1 make -C $(MILKYMIST_GIT_DIR)/flickernoise.git/src clean bin/flickernoise.fbiz
233233
cp $(MILKYMIST_GIT_DIR)/flickernoise.git/src/bin/flickernoise.fbiz ./$@
234234

235235
boot.bin:

0 commit comments

Comments
 (0)
Please sign in to comment.