mirror of
git://slackware.nl/current.git
synced 2025-01-10 05:25:51 +01:00
13 lines
371 B
Diff
13 lines
371 B
Diff
|
--- ./Makefile.orig 2000-05-09 16:18:53.000000000 -0500
|
||
|
+++ ./Makefile 2024-05-12 12:42:00.509961363 -0500
|
||
|
@@ -1,7 +1,8 @@
|
||
|
CC = gcc
|
||
|
+CFLAGS = -O -Wno-error=implicit-function-declaration -Wno-error=implicit-int
|
||
|
|
||
|
strings: strings.o getopt.o
|
||
|
- gcc -O -o strings strings.c getopt.c
|
||
|
+ gcc $(CFLAGS) -o strings strings.c getopt.c
|
||
|
|
||
|
clean:
|
||
|
rm -f a.out core *~ *.o strings
|