mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-06 09:20:40 -08:00
18 lines
322 B
Batchfile
18 lines
322 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
|