aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--FAQ.md10
-rw-r--r--README.md6
-rw-r--r--src/Makefile12
3 files changed, 4 insertions, 24 deletions
diff --git a/FAQ.md b/FAQ.md
index b31645ba..8f7f5fe4 100644
--- a/FAQ.md
+++ b/FAQ.md
@@ -36,16 +36,6 @@ implementation is required for the terminal version.)
- - -
**Q:**
-I downloaded the Linux version, but when I try to compile it, some files are not
-found. Where do I get these files?
-
-**A:**
-You need to download the source version of the release, not the binary version.
-The source version contains all the files necessary for compiling Textadept.
-
-- - -
-
-**Q:**
When I click the "Compile" or "Run" menu item (or execute the key command),
either nothing happens or the wrong command is executed. How can I tell
Textadept which command to run?
diff --git a/README.md b/README.md
index d168c8f0..59ed66c4 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,6 @@ Stable Builds
* [Mac OSX][]
* [Linux][]
* [Linux x86\_64][]
-* [Source][]
* [Modules][]
Unstable Builds
@@ -56,15 +55,14 @@ Unstable Builds
* [Linux x86\_64 Nightly][]
_Warning_: nightly builds are untested, may have bugs, and are the absolute
-cutting-edge versions of Textadept. They should not be used in production, but
-for testing purposes only.
+cutting-edge versions of Textadept. Do not use them in production, but for
+testing purposes only.
[download page]: http://foicica.com/textadept/download
[Win32]: download/textadept_LATEST.win32.zip
[Mac OSX]: download/textadept_LATEST.osx.zip
[Linux]: download/textadept_LATEST.i386.tgz
[Linux x86\_64]: download/textadept_LATEST.x86_64.tgz
-[Source]: download/textadept_LATEST.src.zip
[Modules]: download/textadept_LATEST.modules.zip
[Win32 Nightly]: download/textadept_NIGHTLY.win32.zip
[Mac OSX Nightly]: download/textadept_NIGHTLY.osx.zip
diff --git a/src/Makefile b/src/Makefile
index d4d982ad..6c9b0aab 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -401,8 +401,7 @@ release: ../textadept ../textadeptjit ../textadept-curses \
../textadeptjit.exe ../textadept-curses.exe \
../textadeptjit-curses.exe ../textadept64.exe ../textadept.osx \
../textadeptjit.osx lua51.dll \
- doc pkg_x86_64 pkg_i386 pkg_win32 pkg_win64 pkg_osx pkg_src \
- pkg_modules cleanup
+ doc pkg_x86_64 pkg_i386 pkg_win32 pkg_win64 pkg_osx pkg_modules cleanup
release-nightly: nightly nightly64 win32-nightly osx-nightly cleanup-nightly
# Release directories.
@@ -443,11 +442,6 @@ osx-app: ../textadept.osx ../textadeptjit.osx ../textadept-curses.osx \
$(basedir).osx: osx-app | $(basedir)
mkdir $@ && mv $(osxapp) $@
cp ../scripts/osx/ta $@
-$(basedir).src: | $(basedir)
- cp -r $| $@
- cp -rL lua luajit scintilla gtdialog LexLPeg.cxx termkey cdk $@/src
- cd $@/src/luajit && $(MAKE) clean && cd ../../../
- rm -r $@/src/scintilla/.hg
$(basedir).modules:
mkdir -p $@/modules
for mod in $(modules); do \
@@ -461,15 +455,13 @@ pkg_i386: $(basedir).i386 ; tar czf ../releases/$<.tgz $< && rm -r $<
pkg_win32: $(basedir).win32 ; zip -r ../releases/$<.zip $< && rm -r $<
pkg_win64: $(basedir).win64 ; zip -r ../releases/$<.zip $< && rm -r $<
pkg_osx: $(basedir).osx ; zip -r ../releases/$<.zip $< && rm -r $<
-pkg_src: $(basedir).src ; zip -r ../releases/$<.zip $< && rm -r $<
pkg_modules: $(basedir).modules ; zip -r ../releases/$<.zip $< && rm -r $<
# Clean.
cleanup: ../releases/$(basedir).x86_64.tgz ../releases/$(basedir).i386.tgz \
../releases/$(basedir).win32.zip ../releases/$(basedir).osx.zip \
- ../releases/$(basedir).src.zip ../releases/$(basedir).modules.zip | \
- $(basedir)
+ ../releases/$(basedir).modules.zip | $(basedir)
rm -r $|
# Nightly builds.