mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2025-12-05 18:30:24 -08:00
18 lines
330 B
Batchfile
18 lines
330 B
Batchfile
@ECHO OFF
|
|
REM Script converted from ecl-config
|
|
REM (Michael Goffioul)
|
|
|
|
IF "%1" == "--cflags" (
|
|
ECHO @ECL_CFLAGS@ -I@includedir@
|
|
GOTO END
|
|
) ELSE IF "%1" == "--libs" (
|
|
ECHO @LDFLAGS@ /link /LIBPATH:@libdir@ ecl.lib @CLIBS@
|
|
GOTO END
|
|
)
|
|
|
|
ECHO Usage: ecl-config [OPTIONS]
|
|
ECHO Options:
|
|
ECHO [--cflags]
|
|
ECHO [--libs]
|
|
|
|
:END
|