1 From b1ad0a4560ff3fecc45bf54c64688ffa6a43c714 Mon Sep 17 00:00:00 2001
2 From: Yan <yanxk.fnst@fujitsu.com>
3 Date: Fri, 6 Oct 2023 14:03:50 +0800
4 Subject: [PATCH] modify makefile for cross build
6 remove static cc ar ranlib
7 add cflag and ldflag to build command
9 Upstream Status: Pending
10 Signed-off-by: Yan <yanxk.fnst@fujitsu.com>
12 Makefile | 9 +++------
13 1 file changed, 3 insertions(+), 6 deletions(-)
15 diff --git a/Makefile b/Makefile
16 index 8be64c3..4659342 100644
26 all: libcgic.a cgictest.cgi capture
27 @@ -19,14 +16,14 @@ libcgic.a: cgic.o cgic.h
28 #mingw32 and cygwin users: replace .cgi with .exe
30 cgictest.cgi: cgictest.o libcgic.a
31 - gcc cgictest.o -o cgictest.cgi ${LIBS}
32 + $(CC) $(CFLAGS) $(LDFLAGS) cgictest.o -o cgictest.cgi ${LIBS}
34 capture: capture.o libcgic.a
35 - gcc capture.o -o capture ${LIBS}
36 + $(CC) $(CFLAGS) $(LDFLAGS) capture.o -o capture ${LIBS}
39 rm -f *.o *.a cgictest.cgi capture cgicunittest
42 - gcc -D UNIT_TEST=1 cgic.c -o cgicunittest
43 + $(CC) -D UNIT_TEST=1 cgic.c -o cgicunittest