aboutsummaryrefslogtreecommitdiff
path: root/iemlib1/src/makefile_d_ppc
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2011-02-09 11:26:46 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2011-02-09 11:26:46 +0000
commit589a485bfec090740d2a91f4333c044edd7add4f (patch)
tree2c612acbf519de4b2faabb7e11c422112030391e /iemlib1/src/makefile_d_ppc
parent51cc920c41369d50f2bff6b8afea107d791536ac (diff)
unix line endings for unix makefiles
svn path=/trunk/externals/iemlib/; revision=14882
Diffstat (limited to 'iemlib1/src/makefile_d_ppc')
-rw-r--r--iemlib1/src/makefile_d_ppc56
1 files changed, 28 insertions, 28 deletions
diff --git a/iemlib1/src/makefile_d_ppc b/iemlib1/src/makefile_d_ppc
index a90c68b..1b5c691 100644
--- a/iemlib1/src/makefile_d_ppc
+++ b/iemlib1/src/makefile_d_ppc
@@ -1,17 +1,17 @@
-current: all
-
+current: all
+
.SUFFIXES: .d_ppc
-PD_INSTALL_PATH = "/Applications/Pd.app/Contents/Resources"
-
-INCLUDE = -I. -I$(PD_INSTALL_PATH)/src
-
+PD_INSTALL_PATH = "/Applications/Pd.app/Contents/Resources"
+
+INCLUDE = -I. -I$(PD_INSTALL_PATH)/src
+
CFLAGS =-DPD -O2 -Wall -W -Wshadow -Wstrict-prototypes \
- -Wno-unused -Wno-parentheses -Wno-switch
-
-LFLAGS = -bundle -undefined suppress -flat_namespace
-
-# the sources
+ -Wno-unused -Wno-parentheses -Wno-switch
+
+LFLAGS = -bundle -undefined suppress -flat_namespace
+
+# the sources
SRC = biquad_freq_resp.c \
db2v.c \
@@ -43,24 +43,24 @@ SRC = biquad_freq_resp.c \
TARGET = iemlib1.d_ppc
-OBJ = $(SRC:.c=.o)
-
-#
-# ------------------ targets ------------------------------------
-#
-
-clean:
- rm ../$(TARGET)
- rm *.o
-
-all: $(OBJ)
- @echo :: $(OBJ)
+OBJ = $(SRC:.c=.o)
+
+#
+# ------------------ targets ------------------------------------
+#
+
+clean:
+ rm ../$(TARGET)
+ rm *.o
+
+all: $(OBJ)
+ @echo :: $(OBJ)
$(CC) $(LFLAGS) -o $(TARGET) *.o
- strip -S -x $(TARGET)
- mv $(TARGET) ..
-
-$(OBJ) : %.o : %.c
- touch $*.c
+ strip -S -x $(TARGET)
+ mv $(TARGET) ..
+
+$(OBJ) : %.o : %.c
+ touch $*.c
$(CC) $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c