diff options
author | Thing1 <thing1@seacrossedlovers.xyz> | 2024-08-27 10:36:18 +0100 |
---|---|---|
committer | Thing1 <thing1@seacrossedlovers.xyz> | 2024-08-27 10:36:18 +0100 |
commit | cfdd3c90877b59dc674cc9f68c0b7b4bb7c14ba8 (patch) | |
tree | aae4a0d071df72947e8a50d88027071b3473bb12 /comp/lucas-standen-NEA/code2/Makefile | |
parent | 7dad37effbeaf44ec12d2ae2fcf1643d4d4351b2 (diff) |
rewrite
Diffstat (limited to 'comp/lucas-standen-NEA/code2/Makefile')
-rw-r--r-- | comp/lucas-standen-NEA/code2/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/comp/lucas-standen-NEA/code2/Makefile b/comp/lucas-standen-NEA/code2/Makefile new file mode 100644 index 0000000..2b37de2 --- /dev/null +++ b/comp/lucas-standen-NEA/code2/Makefile @@ -0,0 +1,16 @@ +CFLAGS= -O0 -ggdb + +all: _zpy _parser _tokenizer _util + cc zpy.o parser.o tokenizer.o util.o -o zpy ${CFLAGS} + +_zpy: zpy.c + cc zpy.c -c -o zpy.o ${CFLAGS} +_parser: parser.c + cc parser.c -c -o parser.o ${CFLAGS} +_tokenizer: tokenizer.c + cc tokenizer.c -c -o tokenizer.o ${CFLAGS} +_util: util.c + cc util.c -c -o util.o ${CFLAGS} + +clean: + rm -rf zpy *.o |