9c62c4e369
Clean makefiles from colors, optimizations, and other amenities. ok rpointel@
17 lines
559 B
Plaintext
17 lines
559 B
Plaintext
$OpenBSD: patch-deps_linenoise_Makefile,v 1.2 2011/07/28 08:57:32 dcoppa Exp $
|
|
--- deps/linenoise/Makefile.orig Fri Jul 22 12:22:26 2011
|
|
+++ deps/linenoise/Makefile Wed Jul 27 09:22:55 2011
|
|
@@ -1,10 +1,10 @@
|
|
linenoise_example: linenoise.h linenoise.c
|
|
|
|
linenoise_example: linenoise.o example.o
|
|
- $(CC) $(ARCH) -Wall -W -Os -g -o linenoise_example linenoise.o example.o
|
|
+ $(CC) $(CFLAGS) $(ARCH) -o linenoise_example linenoise.o example.o
|
|
|
|
.c.o:
|
|
- $(CC) $(ARCH) -c -Wall -W -Os -g $<
|
|
+ $(CC) $(CFLAGS) $(ARCH) -c $<
|
|
|
|
clean:
|
|
rm -f linenoise_example *.o
|