marqs85 / ossc

Open Source Scan Converter
http://junkerhq.net/xrgb/index.php/OSSC
GNU General Public License v3.0
470 stars 63 forks source link

menu_sjis.c is in Makefile but missing in repository #4

Closed alfishe closed 6 years ago

alfishe commented 7 years ago

ossc/menu_sjis.c file is not pushed and missing causing build error

marqs85 commented 7 years ago

menu_sjis.c is a Shift-JIS formatted menu.c that should be generated dynamically when building jp-lang image. If you're on *nix system, iconv does the trick:

make clean && iconv -f UTF-8 -t SHIFT-JIS ossc/menu.c > ossc/menu_sjis.c && make OSDLANG=JP mem_init_generate

alfishe commented 7 years ago

Does it makes sense then to add it to correspondent target to Makefile as a dependency for mem_init_generate for JP enabled? Otherwise it's super-weird having a file registered in project/makefile but missing and without any idea why.

marqs85 commented 7 years ago

The Makefile was originally generated by Altera tools and contains lots of unnecessary stuff so it should be written from scratch with only relevant targets (which are currently defined in codelite project file

marqs85 commented 6 years ago

Fixed in 4ae3423acbb84ba359c6b3d83380b22061443225.