From 6c0655e7dfd83b726eeec71ecb72e29f5ef0a8d4 Mon Sep 17 00:00:00 2001 From: JozanLeClerc <> Date: Sun, 22 May 2022 16:30:43 +0000 Subject: WIP FossilOrigin-Name: 50c6fcb1c1758fb6252c48df702f81c626389bcc --- Makefile | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 06b253b..a92d141 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit v1.2.3