You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-laptop/spicctrl/files/spicctrl-1.9-makefile.patch

22 lines
444 B

--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,5 @@
-CC = gcc
-CFLAGS = -Wall -W -Wshadow -Wstrict-prototypes -Wcast-qual -Wcast-align \
- -Wwrite-strings -O2 -pipe
+CFLAGS += -Wall -W -Wshadow -Wstrict-prototypes -Wcast-qual -Wcast-align \
+ -Wwrite-strings
SRC = spicctrl.c
OBJ = $(SRC:.c=.o)
LIBS =
@@ -13,9 +12,6 @@
all: spicctrl
-spicctrl: $(OBJ)
- $(CC) -o spicctrl $(OBJ) $(LIBS)
-
clean:
rm -f $(OBJ) spicctrl *~