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