💾 Archived View for gmi.noulin.net › gitRepositories › systemSetup › file › termux › scMakefileDiff.… captured on 2024-07-09 at 03:00:55. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-01-29)

-=-=-=-=-=-=-

systemSetup

Log

Files

Refs

README

LICENSE

scMakefileDiff (679B)

     1 diff --git a/src/Makefile b/src/Makefile
     2 index 652dc6a..e58b6d2 100755
     3 --- a/src/Makefile
     4 +++ b/src/Makefile
     5 @@ -2,7 +2,7 @@
     6  name = sc-im
     7  
     8  # The base directory where everything should be installed.
     9 -prefix  = /usr/local
    10 +prefix  = /data/data/com.termux/files/usr/
    11  
    12  EXDIR   = $(prefix)/bin
    13  HELPDIR = $(prefix)/share/$(name)
    14 @@ -16,9 +16,9 @@ MANDIR  = $(prefix)/share/man/man1
    15  #YACC = bison -y
    16  #SED  = sed
    17  
    18 -LDLIBS += -lm
    19 +LDLIBS += -lm -landroid-support -lncurses
    20  
    21 -CFLAGS += -Wall -g
    22 +CFLAGS += -Wall -g -I/data/data/com.termux/files/usr/include/libandroid-support/
    23  CFLAGS += -DNCURSES
    24  CFLAGS += -D_XOPEN_SOURCE_EXTENDED -D_GNU_SOURCE
    25  CFLAGS += -DSNAME=\"$(name)\"