Rockbox Development > Starting Development and Compiling
Should I report errors I get while compiling?
lee321987:
Well, just before I read your post, Saratoga, I deleted everything in my 'build' dir, and then everything went well.
Is 'make veryclean' a command. And is there some character(s) i can type after a command to get help on it (like "/?" in DOS)?
cool_walking_:
Generally with Unix programs, "-h" or "--help" will give you syntax information, though it differs from program to program.
make is a program which, basically, runs a set of commands that are stipulated in the Makefile. You can see that "veryclean" is a target in the Makefile, which doesn't do anything itself, but depends upon the "clean" and "toolsclean" targets, causing them to be run.
--- Quote ---veryclean: clean toolsclean
toolsclean:
$(SILENT)$(MAKE) -C $(TOOLSDIR) clean
clean:
$(SILENT)echo Cleaning build directory
$(SILENT)rm -rf rockbox.zip TAGS apps firmware comsim sim lang.[ch] manual *.pdf *.a credits.raw rockbox.ipod bitmaps pluginbitmaps UI256.bmp rockbox-full.zip html txt rockbox-manual*.zip sysfont.h rockbox-info.txt voicefontids *.wav *.mp3 *.voice max_language_size.h
--- End quote ---
Your Makefile will be different depending on what sort of build you are making, since it is generated by the rockbox/tools/configure script.
Navigation
[0] Message Index
[*] Previous page
Go to full version