From 000658c8405f93bf8ce1e03a9055e6944e730534 Mon Sep 17 00:00:00 2001 From: c+1 Date: Sat, 18 Nov 2023 23:14:24 -0500 Subject: I honestly don't remember. Parser stuff. Probably. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 0fe990e..c5f9963 100644 --- a/Makefile +++ b/Makefile @@ -25,9 +25,6 @@ dbg_options: @echo "CFLAGS: ${DBG_CFLAGS}" @echo -%.o: %.c - ${CC} -c $< -o $@ - halk: reg_options ${OBJS} ${CC} ${OBJS} ${REG_CFLAGS} -o ${BIN}.out @@ -35,6 +32,9 @@ dbg: CFLAGS := ${DBG_CFLAGS} dbg: dbg_options ${OBJS} ${CC} ${OBJS} ${DBG_CFLAGS} -o ${BIN}.out +%.o: %.c + ${CC} -c $< -o $@ + install: all mkdir -p ${PREFIX} cp -f ${BIN}.out ${PREFIX}/${BIN} -- cgit v1.2.3