diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Makefile b/src/Makefile index 62ceb493..0ccbb723 100644 --- a/src/Makefile +++ b/src/Makefile @@ -309,15 +309,16 @@ $(basedir).i386: ; hg archive $@ -X ".hg*" release: $(basedir).i386 make deps clean doc PKG_CONFIG_PATH=/opt/gtk/lib/pkgconfig make -j4 - make -j4 curses + make -j4 CURSES_CFLAGS=-I/opt/ncursesw/include/ncursesw \ + CURSES_LIBS="-L/opt/ncursesw/lib -lncursesw" curses cp -r ../doc ../lexers ../textadept* $< tar czf /tmp/$<.tgz $< && rm -rf $< $(basedir).x86_64: ; hg archive $@ -X ".hg*" release64: $(basedir).x86_64 make clean libluajit64 - PKG_CONFIG_PATH=/opt/gtk64/lib/pkgconfig make -j4 CFLAGS='$(CFLAGS) -m64' \ - CXXFLAGS='$(CXXFLAGS) -m64' || return 0 - make -j4 CFLAGS='$(CFLAGS) -m64' CXXFLAGS='$(CXXFLAGS) -m64' \ + PKG_CONFIG_PATH=/opt/gtk64/lib/pkgconfig make -j4 CFLAGS="$(CFLAGS) -m64" \ + CXXFLAGS="$(CXXFLAGS) -m64" || return 0 + make -j4 CFLAGS="$(CFLAGS) -m64" CXXFLAGS="$(CXXFLAGS) -m64" \ CURSES_CFLAGS=-I/opt/ncursesw64/include/ncursesw \ CURSES_LIBS="-L/opt/ncursesw64/lib -lncursesw" curses || return 0 cp -r ../doc ../lexers ../textadept* $< |