ste/Makefile
ElectricAlchemist b2af13cdff bug fixes
2019-10-29 11:16:27 +01:00

8 lines
152 B
Makefile

CC=gcc
CFLAGS=-Wall -Wextra -pedantic -Werror
OFLAGS=-O3
LFLAGS=-lncursesw -ltcmalloc
ste: ste.c
$(CC) $(CFLAGS) $(OFLAGS) $(LFLAGS) -o ste $^