aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorc+12023-11-18 23:14:24 -0500
committerc+12023-11-18 23:14:24 -0500
commit000658c8405f93bf8ce1e03a9055e6944e730534 (patch)
tree9d49aefb841a413351a3c0168497a93053062000 /Makefile
parent2cc68205a1c0b746ad405607940e7183c4fb09b0 (diff)
I honestly don't remember. Parser stuff. Probably.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
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}