C/C++ tokenizer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 

21 lines
812 B

default: tokenize.c tokenize.h
$(MAKE) lib;
$(CC) -Wall -Wextra -pedantic -Wpointer-arith -Werror -O3 ./tokenize.c -lmaa -o tokenize_test;
unsafe: tokenize.c tokenize.h
$(CC) -DNDEBUG -O3 ./tokenize.c -lmaa;
unsafelib: tokenize.c tokenize.h
$(CC) -DLIB -DNDEBUG -c -fpic -O3 ./tokenize.c;
$(CC) -shared -o tokenize.so tokenize.o -lmaa;
lib: tokenize.c tokenize.h
$(CC) -DLIB -DNDEBUG -c -fpic -Wall -Wextra -pedantic -Wpointer-arith -Werror -O3 ./tokenize.c
$(CC) -shared -o libtokenize.so tokenize.o -lmaa;
debug: tokenize.c tokenize.h
$(CC) -Wall -Wextra -pedantic -Wpointer-arith -Werror ./tokenize.c -lmaa -o tokenize_debug;
debuglib: tokenize.c tokenize.h
$(CC) -g -c -fpic -Wall -Wextra -pedantic -Wpointer-arith -Werror ./tokenize.c;
$(CC) -shared -o tokenize.so tokenize.o -lmaa;