diff options
| author | stkhan <personal@slickd.xyz> | 2021-05-25 01:53:52 +0000 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2021-05-25 01:53:52 +0000 |
| commit | 87ded319c6b8fe561c471ed154a75404c0d9889a (patch) | |
| tree | 8330e380a36a0e1b10bc512cf861888bd24631aa /tabbed-0.6/config.mk | |
| parent | 3eb0ac722dc7ea58bdd9b90d76f62048814bb937 (diff) | |
Replaced falkon for surf
Diffstat (limited to 'tabbed-0.6/config.mk')
| -rw-r--r-- | tabbed-0.6/config.mk | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tabbed-0.6/config.mk b/tabbed-0.6/config.mk new file mode 100644 index 0000000..5279711 --- /dev/null +++ b/tabbed-0.6/config.mk @@ -0,0 +1,25 @@ +# tabbed version +VERSION = 0.6 + +# Customize below to fit your system + +# paths +PREFIX = /usr/local +MANPREFIX = ${PREFIX}/share/man + +# includes and libs +INCS = -I. -I/usr/include +LIBS = -L/usr/lib -lc -lX11 + +# flags +CPPFLAGS = -DVERSION=\"${VERSION}\" -D_BSD_SOURCE +CFLAGS = -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} +LDFLAGS = -s ${LIBS} + +# Solaris +#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\" +#LDFLAGS = ${LIBS} + +# compiler and linker +CC = cc + |