diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 6 insertions, 7 deletions
@@ -11,7 +11,7 @@ # ======================== # # asm-cgi-example: Makefile -# Sun May 22 16:55:43 CEST 2022 +# Sun May 22 18:12:41 CEST 2022 # Joe # # BSD Makefile @@ -23,11 +23,11 @@ INSTALL_DIR := /usr/local/www/jozan SRCS := ${SRCS_DIR}/c_cpu.S SRCS += ${SRCS_DIR}/c_example.S +SRCS += ${SRCS_DIR}/c_infos.S +SRCS += ${SRCS_DIR}/u_utils.S OBJS := ${SRCS:.S=.S.o} -LDFLAGS := -lc - TARGET := asm-example.cgi SHELL := /bin/sh @@ -44,23 +44,22 @@ INSTALL := install ${AS} -g -o ${.TARGET} ${.IMPSRC} ${TARGET}: ${OBJS} - ${CC} ${CFLAGS} -o ${.TARGET} ${OBJS} ${LDFLAGS} + ${CC} ${CFLAGS} -o ${.TARGET} ${OBJS} all: ${TARGET} clean: ${RM} ${OBJS} ${OBJS} ${TARGET}.core ${TARGET} -re: clean all - install: ${CP} ${TARGET} ${INSTALL_DIR} run: ${TARGET} ./${TARGET} -.PHONY: all clean re install run +.PHONY: all clean install run # Files prefixes # -------------- # c: core +# u: utils |