Changeset 673
- Timestamp:
- Jul 28, 2015, 1:27:46 PM (9 years ago)
- Location:
- soft/giet_vm
- Files:
-
- 11 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/Makefile
r667 r673 31 31 applications/gameoflife/gameoflife.py \ 32 32 applications/ocean/ocean.py \ 33 applications/raycast/raycast.py \ 33 34 applications/router/router.py \ 34 35 applications/shell/shell.py \ … … 194 195 cd applications/gameoflife && $(MAKE) clean && cd ../.. 195 196 cd applications/ocean && $(MAKE) clean && cd ../.. 197 cd applications/raycast && $(MAKE) clean && cd ../.. 196 198 cd applications/router && $(MAKE) clean && cd ../.. 197 199 cd applications/shell && $(MAKE) clean && cd ../.. … … 218 220 mmd -o -i $< ::/bin/gameoflife || true 219 221 mmd -o -i $< ::/bin/ocean || true 222 mmd -o -i $< ::/bin/raycast || true 220 223 mmd -o -i $< ::/bin/router || true 221 224 mmd -o -i $< ::/bin/shell || true … … 233 236 mcopy -o -i $< applications/gameoflife/appli.elf ::/bin/gameoflife || true 234 237 mcopy -o -i $< applications/ocean/appli.elf ::/bin/ocean || true 238 mcopy -o -i $< applications/raycast/appli.elf ::/bin/raycast || true 235 239 mcopy -o -i $< applications/router/appli.elf ::/bin/router || true 236 240 mcopy -o -i $< applications/shell/appli.elf ::/bin/shell || true … … 392 396 393 397 ######################################## 398 ### raycast application compilation 399 applications/raycast/appli.elf: build/libs/libmath.a build/libs/libuser.a 400 $(MAKE) -C applications/raycast 401 402 ######################################## 394 403 ### router application compilation 395 404 applications/router/appli.elf: build/libs/libuser.a -
soft/giet_vm/giet_python/genmap
r591 r673 37 37 # - gameoflife 38 38 # - ocean 39 # - raycast 39 40 # - router 40 41 # - sort … … 132 133 default = False, 133 134 help = 'map the "ocean" application for the GietVM' ) 135 136 parser.add_option( '--raycast', action = 'store_true', dest = 'raycast', 137 default = False, 138 help = 'map the "raycast" application for the GietVM' ) 134 139 135 140 parser.add_option( '--router', action = 'store_true', dest = 'router', … … 181 186 map_gameoflife = options.gameoflife # map "gameoflife" application if True 182 187 map_ocean = options.ocean # map "ocean" application if True 188 map_raycast = options.raycast # map "raycast" application if True 183 189 map_router = options.router # map "router" application if True 184 190 map_shell = options.shell # map "shell" application if True … … 243 249 print '[genmap] application "ocean" will be loaded' 244 250 251 if ( map_raycast ): 252 appli = __import__( 'raycast' ) 253 appli.extend( mapping ) 254 print '[genmap] application "raycast" will be loaded' 255 245 256 if ( map_router ): 246 257 appli = __import__( 'router' )
Note: See TracChangeset
for help on using the changeset viewer.