mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
61 lines
1.3 KiB
Diff
61 lines
1.3 KiB
Diff
From 4b77518231c03c7a4ab5b2118ff115012cbe8bc2 Mon Sep 17 00:00:00 2001
|
|
From: barracuda156 <vital.had@gmail.com>
|
|
Date: Sun, 6 Aug 2023 16:11:25 +0800
|
|
Subject: [PATCH 2/3] Add MacOS makefile
|
|
|
|
Closes: https://github.com/hrs-allbsd/spegla/issues/1
|
|
---
|
|
Makefile.macosx | 40 ++++++++++++++++++++++++++++++++++++++++
|
|
1 file changed, 40 insertions(+)
|
|
create mode 100644 Makefile.macosx
|
|
|
|
diff --git Makefile.macosx Makefile.macosx
|
|
new file mode 100644
|
|
index 0000000..374815d
|
|
--- /dev/null
|
|
+++ Makefile.macosx
|
|
@@ -0,0 +1,40 @@
|
|
+# $Id: Makefile.linux,v 1.5 1999/12/17 00:44:27 jens Exp $
|
|
+OBJS = spegla.o jftp.o parserow.o e_err.o tgetopt.o container.o \
|
|
+ que_syms.o spf_util.o strlcpy.o
|
|
+
|
|
+CC ?= gcc
|
|
+DEFS ?=
|
|
+CFLAGS = -c -Wall -g
|
|
+
|
|
+spegla: ${OBJS}
|
|
+ $(CC) -o spegla ${OBJS} ${LDFLAGS}
|
|
+
|
|
+parserow.o: parserow.c
|
|
+ $(CC) ${CFLAGS} parserow.c ${DEFS}
|
|
+
|
|
+spf_util.o: spf_util.c
|
|
+ $(CC) ${CFLAGS} spf_util.c ${DEFS}
|
|
+
|
|
+tgetopt.o: tgetopt.c
|
|
+ $(CC) ${CFLAGS} tgetopt.c ${DEFS}
|
|
+
|
|
+e_err.o: e_err.c
|
|
+ $(CC) ${CFLAGS} e_err.c ${DEFS}
|
|
+
|
|
+container.o: container.c
|
|
+ $(CC) ${CFLAGS} container.c ${DEFS}
|
|
+
|
|
+que_syms.o: que_syms.c
|
|
+ $(CC) ${CFLAGS} que_syms.c ${DEFS}
|
|
+
|
|
+strlcpy.o: strlcpy.c
|
|
+ $(CC) ${CFLAGS} strlcpy.c ${DEFS}
|
|
+
|
|
+jftp.o: jftp.c
|
|
+ $(CC) ${CFLAGS} jftp.c ${DEFS}
|
|
+
|
|
+spegla.o: spegla.c
|
|
+ $(CC) ${CFLAGS} spegla.c ${DEFS}
|
|
+
|
|
+clean:
|
|
+ /bin/rm -f *.o spegla
|
|
--
|
|
2.41.0
|
|
|