summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsumuel <yakub@yakubos.org>2026-06-07 01:56:16 +0100
committersumuel <yakub@yakubos.org>2026-06-07 01:56:16 +0100
commitaad2b809ad64ee653793e16ca3e7ba0a84d3fd2a (patch)
tree7e97f22c3ecfbcb7091e326a2fbc6ab33f78e770
parente16af887f56f88e7addf5733b9cf58850fd689bc (diff)
gcc not tcc, nobody has that
-rwxr-xr-xMakefile2
-rwxr-xr-xconfig.mk39
2 files changed, 1 insertions, 40 deletions
diff --git a/Makefile b/Makefile
index b7b585e..e850d74 100755
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os
-CC = tcc
+CC = gcc
all:
diff --git a/config.mk b/config.mk
deleted file mode 100755
index 982dc21..0000000
--- a/config.mk
+++ /dev/null
@@ -1,39 +0,0 @@
-# dwm version
-VERSION = 6.8
-
-# Customize below to fit your system
-
-# paths
-PREFIX = /usr/local
-MANPREFIX = ${PREFIX}/share/man
-
-X11INC = /usr/X11R6/include
-X11LIB = /usr/X11R6/lib
-
-# Xinerama, comment if you don't want it
-XINERAMALIBS = -lXinerama
-XINERAMAFLAGS = -DXINERAMA
-
-# freetype
-FREETYPELIBS = -lfontconfig -lXft
-FREETYPEINC = /usr/include/freetype2
-# OpenBSD (uncomment)
-#FREETYPEINC = ${X11INC}/freetype2
-#MANPREFIX = ${PREFIX}/man
-
-# includes and libs
-INCS = -I${X11INC} -I${FREETYPEINC}
-LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
-
-# flags
-CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
-#CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
-CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os ${INCS} ${CPPFLAGS}
-LDFLAGS = ${LIBS}
-
-# Solaris
-#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
-#LDFLAGS = ${LIBS}
-
-# compiler and linker
-CC = cc