mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 18:55:07 +00:00

Much redundancy is removed from package scripts with this system. It also supports simple dependency management, uninstalling (through BSD ports style plist files), cleaning up after itself (with clean, clean_dist, clean_all commands), etc.
22 lines
623 B
Diff
22 lines
623 B
Diff
--- lua/src/Makefile 2018-06-25 13:46:36.000000000 -0400
|
|
+++ /home/mustafa/src/lua/src/Makefile 2019-05-28 15:26:12.575719307 -0400
|
|
@@ -4,15 +4,15 @@
|
|
# == CHANGE THE SETTINGS BELOW TO SUIT YOUR ENVIRONMENT =======================
|
|
|
|
# Your platform. See PLATS for possible values.
|
|
-PLAT= none
|
|
+PLAT= generic
|
|
|
|
-CC= gcc -std=gnu99
|
|
+CC= i686-pc-serenity-gcc -std=gnu99
|
|
CFLAGS= -O2 -Wall -Wextra -DLUA_COMPAT_5_2 $(SYSCFLAGS) $(MYCFLAGS)
|
|
LDFLAGS= $(SYSLDFLAGS) $(MYLDFLAGS)
|
|
LIBS= -lm $(SYSLIBS) $(MYLIBS)
|
|
|
|
-AR= ar rcu
|
|
-RANLIB= ranlib
|
|
+AR= i686-pc-serenity-ar rcu
|
|
+RANLIB= i686-pc-serenity-ranlib
|
|
RM= rm -f
|
|
|
|
SYSCFLAGS=
|