update the patch
This commit is contained in:
parent
1363afa043
commit
57c19fd21a
@ -1,6 +1,6 @@
|
|||||||
From 04743b469ff68fe20ec15262458325bf9406d387 Mon Sep 17 00:00:00 2001
|
From aa5bfaa117ebe48366e614177abeaddbeb1fb0c0 Mon Sep 17 00:00:00 2001
|
||||||
From: hongrongxuan <389817374@qq.com>
|
From: hongrongxuan <389817374@qq.com>
|
||||||
Date: Fri, 2 Sep 2022 20:20:20 +0800
|
Date: Mon, 5 Sep 2022 16:50:52 +0800
|
||||||
Subject: [PATCH] add -g option to compile the code
|
Subject: [PATCH] add -g option to compile the code
|
||||||
|
|
||||||
---
|
---
|
||||||
@ -8,29 +8,29 @@ Subject: [PATCH] add -g option to compile the code
|
|||||||
1 file changed, 3 insertions(+), 3 deletions(-)
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
diff --git a/src/Makefile b/src/Makefile
|
diff --git a/src/Makefile b/src/Makefile
|
||||||
index 854993d..0f87943 100644
|
index 1d9d63e..b1f20c0 100755
|
||||||
--- a/src/Makefile
|
--- a/src/Makefile
|
||||||
+++ b/src/Makefile
|
+++ b/src/Makefile
|
||||||
@@ -4,10 +4,10 @@ PREFIX=/usr
|
@@ -4,10 +4,10 @@ PREFIX=/usr
|
||||||
BINDIR=$(PREFIX)/bin
|
BINDIR=$(PREFIX)/bin
|
||||||
|
|
||||||
astream : astream.c astream.h astream_log.o
|
astream : astream.c astream.h astream_log.o
|
||||||
- cc -Wall -o astream astream.c astream_log.o
|
- cc -Wall -o astream astream.c astream_log.o
|
||||||
+ cc -g -Wall -o astream astream.c astream_log.o
|
+ cc -g -Wall -o astream astream.c astream_log.o
|
||||||
|
|
||||||
astream_log.o : astream_log.c astream_log.h
|
astream_log.o : astream_log.c astream_log.h
|
||||||
- cc -Wall -c astream_log.c
|
- cc -Wall -c astream_log.c
|
||||||
+ cc -g -Wall -c astream_log.c
|
+ cc -g -Wall -c astream_log.c
|
||||||
|
|
||||||
install:
|
install:
|
||||||
install -d $(DESTDIR)$(BINDIR)
|
install -d $(DESTDIR)$(BINDIR)
|
||||||
@@ -16,4 +16,4 @@ install:
|
@@ -16,4 +16,4 @@ install:
|
||||||
uninstall:
|
uninstall:
|
||||||
rm -f $(DESTDIR)$(BINDIR)/$(PROG)
|
rm -f $(DESTDIR)$(BINDIR)/$(PROG)
|
||||||
clean:
|
clean:
|
||||||
- rm -f astream astream.o astream_log.o
|
- rm -f astream astream.o astream_log.o
|
||||||
\ No newline at end of file
|
\ No newline at end of file
|
||||||
+ rm -f astream astream.o astream_log.o
|
+ rm -f astream astream.o astream_log.o
|
||||||
--
|
--
|
||||||
2.35.1.windows.2
|
2.36.1
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user