about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-02-06 12:44:51 -0800
committerKartik K. Agaram <vc@akkartik.com>2022-02-06 12:44:51 -0800
commitc101d1a3c5cd9edbc5f1f85e40708df4defb430a (patch)
tree63611e5ce8ff713093f43ccad494948c39c75162
parenta6addb8e42a044697e1fa749e6de67f80e8b29d6 (diff)
downloadteliva-c101d1a3c5cd9edbc5f1f85e40708df4defb430a.tar.gz
drop MinGW
I've never tested with it, and it is likely broken after all my changes
to base Lua 5.1. Might as well be transparent about that.

If you care about this platform, please let me know:
  http://akkartik.name/contact
-rw-r--r--src/Makefile7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/Makefile b/src/Makefile
index a9f39a2..0340f88 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -20,7 +20,7 @@ MYLIBS=
 
 # == END OF USER SETTINGS. NO NEED TO CHANGE ANYTHING BELOW THIS LINE =========
 
-PLATS= aix ansi freebsd generic linux macosx mingw netbsd openbsd posix solaris
+PLATS= aix ansi freebsd generic linux macosx netbsd openbsd posix solaris
 
 LUA_A=	liblua.a
 CORE_O=	lapi.o lcode.o ldebug.o ldo.o ldump.o lfunc.o lgc.o llex.o lmem.o \
@@ -106,11 +106,6 @@ macosx:
 # use this on Mac OS X 10.3-
 #	$(MAKE) all MYCFLAGS=-DLUA_USE_MACOSX
 
-mingw:
-	$(MAKE) "LUA_A=lua51.dll" "LUA_T=lua.exe" \
-	"AR=$(CC) -shared -o" "RANLIB=strip --strip-unneeded" \
-	"MYCFLAGS=-DLUA_BUILD_AS_DLL" "MYLIBS=" "MYLDFLAGS=-s" lua.exe
-
 openbsd:
 	$(MAKE) -C lcurses CC="$(CC)" CFLAGS="$(CFLAGS)"
 	$(MAKE) -C luasocket bsd