mirror of
https://github.com/ad-995/bluffy
synced 2026-06-08 13:03:06 +00:00
7 lines
145 B
Makefile
7 lines
145 B
Makefile
CC = x86_64-w64-mingw32-gcc
|
|
FLAGS = -Os -m64 -ffunction-sections -Wl,--strip-all
|
|
LIB = -lpcre2-8
|
|
|
|
css:
|
|
$(CC) main.c $(FLAGS) $(LIB) -o css.exe
|