Move make stuff to it's own folder; add a make_gcc_arm exporter

pull/2577/head
Jimmy Brisson 2016-08-22 11:23:58 -05:00
parent 5c9dd3c3a1
commit 17e096b369
17 changed files with 3 additions and 2 deletions

View File

@ -19,7 +19,7 @@ from os.path import join, exists, basename
from shutil import copytree, rmtree, copy
import yaml
from tools.export import uvision4, uvision5, codered, gccarm, ds5_5, iar
from tools.export import uvision4, uvision5, codered, makefile, ds5_5, iar
from tools.export import emblocks, coide, kds, simplicityv3, atmelstudio
from tools.export import sw4stm32, e2studio, zip
from tools.export.exporters import OldLibrariesException, FailedBuildException
@ -32,7 +32,8 @@ EXPORTERS = {
'uvision4': uvision4.Uvision4,
'uvision5': uvision5.Uvision5,
'lpcxpresso': codered.CodeRed,
'gcc_arm': gccarm.GccArm,
'gcc_arm': makefile.GccArm,
'make_gcc_arm': makefile.GccArm,
'ds5_5': ds5_5.DS5_5,
'iar': iar.IAREmbeddedWorkbench,
'emblocks' : emblocks.IntermediateFile,