1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00
freebsd-ports/audio/ctronome/files/patch-Makefile
Dmitry Marakasov 46a6feb7de A very simple yet powerful programmable console metronome.
WWW:  http://ctronome.kign.org/

PR:		149754
Submitted by:	Charles Mercadal <mercadal@diablonet.net>
2010-08-19 01:29:41 +00:00

17 lines
337 B
Plaintext

exit--- Makefile.orig 2008-12-18 13:49:32.000000000 +0300
+++ Makefile 2010-08-18 21:47:01.000000000 +0400
@@ -1,11 +1,11 @@
VERSION = 0.5.3
-CC = gcc
+CC ?= gcc
OBJS = ctronome.o dsp.o routines.o
all: ctronome
%.o: %.c ctronome.h routines.h
- $(CC) -c $<
+ $(CC) $(CFLAGS) -c $<
ctronome: $(OBJS)
$(CC) -o ctronome $(OBJS)