Forum Discussion
Altera_Forum
Honored Contributor
20 years agoHow solve this problem?
http://forum.niosforum.com/work2/style_emoticons/<#EMO_DIR#>/blink.gif make -k all make: *** No rule to make target `all'. When i follow the guide create an application, but makef...
Altera_Forum
Honored Contributor
20 years ago --- Quote Start --- originally posted by singerpop@Oct 14 2005, 03:51 PM http://forum.niosforum.com/work2/style_emoticons/<#emo_dir#>/blink.gif
make -k all
make: *** no rule to make target `all'.
when i follow the guide create an application, but makefile always failed as above.
i'm a linux newer.
can anyone help me?
thank you.
<div align='right'><{post_snapback}> (index.php?act=findpost&pid=10372)
--- quote end ---
--- Quote End --- Hi, you can try this makefile with the standard generated rules.mak # ################################################## include Settings.mak include Rules.mak # put here all the obj files: OBJS = myfile.o myfile2.o myfile3.o # specify here your target: all: myprog.exe myprog.bin: $(OBJS) # ################################################### It works for me and normally for you too. Warm Regards