mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-30 23:02:50 -06:00
move GFC and GFI
This commit is contained in:
@@ -1,14 +1,13 @@
|
|||||||
module Main where
|
module Main where
|
||||||
|
|
||||||
import GF.Devel.GFC
|
import GFC
|
||||||
import GF.Devel.GFI
|
import GFI
|
||||||
|
|
||||||
import System (getArgs)
|
import System.Environment (getArgs)
|
||||||
|
|
||||||
main :: IO ()
|
main :: IO ()
|
||||||
main = do
|
main = do
|
||||||
xx <- getArgs
|
args <- getArgs
|
||||||
case xx of
|
case args of
|
||||||
"--batch":args -> mainGFC args
|
"--batch":args -> mainGFC args
|
||||||
_ -> mainGFI xx
|
_ -> mainGFI args
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
module GF.Devel.GFC (mainGFC) where
|
module GFC (mainGFC) where
|
||||||
-- module Main where
|
-- module Main where
|
||||||
|
|
||||||
import GF.Compile
|
import GF.Compile
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
module GF.Devel.GFI (mainGFI) where
|
module GFI (mainGFI) where
|
||||||
|
|
||||||
import GF.Command.Interpreter
|
import GF.Command.Interpreter
|
||||||
import GF.Command.Importing
|
import GF.Command.Importing
|
||||||
Reference in New Issue
Block a user