Makefile 228 B

123456789
  1. CC=gcc
  2. CFLAGS=-O2 --machine-arch=native -pipe -Wall
  3. LIBS=
  4. # https://github.com/adamretter/utf8-validator-c
  5. CFLAGS+=-Isimdutf8check/
  6. all: utf8filenamecheck.c
  7. $(CC) $(CFLAGS) -o bin/utf8filenamecheck utf8filenamecheck.c $(LIBS)