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/media-sound/ttaenc/files/ttaenc-3.4.1-fix-build-syst...

22 lines
460 B

--- a/Makefile
+++ b/Makefile
@@ -2,16 +2,12 @@
# $Id: Makefile,v 1.4 2007/04/04 00:00:00 root Exp $
#
-CFLAGS = -Wall -O3 -fomit-frame-pointer -funroll-loops \
- -fforce-addr -falign-functions=4 -msse
+CFLAGS += -Wall
TTAENC = ttaenc
INSDIR = /usr/bin
ttaenc: $(patsubst %.c, %.o, $(wildcard *.c))
- gcc $^ -o $@ $(CFLAGS)
-
-%.o: %.c
- gcc -c $(CFLAGS) $<
+ $(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@
install:
[ -d "$(INSDIR)" ] || mkdir $(INSDIR)