mirror of
https://github.com/johnkerl/miller.git
synced 2026-08-02 12:32:21 +00:00
15 lines
562 B
Bash
Executable file
15 lines
562 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo ================================================================
|
|
|
|
# Note: I need this on my Windows machine with MSYS2 but it causes an
|
|
# error on Appveyor.
|
|
# sed 's/-lm/-lm -lpcreposix/' c/Makefile.am > temp; mv temp c/Makefile.am
|
|
# sed 's/-lm/-lm -lpcreposix/' c/unit_test/Makefile.am > temp; mv temp c/unit_test/Makefile.am
|
|
|
|
sed 's/#undef MLR_ON_MSYS2/#define MLR_ON_MSYS2/' c/lib/mlr_arch.h > temp; mv temp c/lib/mlr_arch.h
|
|
|
|
echo ================================================================
|
|
./configure
|
|
make -C c/parsing lemon.exe
|
|
make
|