From 8fdfe1150a2155da5ea9d458adc347c4a6de5ce1 Mon Sep 17 00:00:00 2001 From: Mustafa Quraish Date: Mon, 24 Jan 2022 11:41:31 -0500 Subject: Initial commit + start of lexer --- compile.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 compile.sh (limited to 'compile.sh') diff --git a/compile.sh b/compile.sh new file mode 100755 index 0000000..faeaf52 --- /dev/null +++ b/compile.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +CC=gcc +CFLAGS="-Wall -Wextra -Werror -ggdb3" +SRCS=cup/*.c + +set -xe + +$CC $CFLAGS $SRCS -o cupcc +./cupcc $@ -- cgit v1.2.3