aboutsummaryrefslogtreecommitdiff
path: root/iemlib2/src/makefile_d_ppc
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2011-02-09 11:17:18 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2011-02-09 11:17:18 +0000
commit005dbcec2baa097aa66e02ee9df15e3e521381d2 (patch)
treea78b1f367b2150878b80956c32d3899b42fbc239 /iemlib2/src/makefile_d_ppc
parent8bdfe775e8c211fa7f0a56548878c68c7fce9891 (diff)
added "-DHAVE_G_CANVAS_H"; unix-linebreaks for unix-makefiles
svn path=/trunk/externals/iemlib/; revision=14880
Diffstat (limited to 'iemlib2/src/makefile_d_ppc')
-rw-r--r--iemlib2/src/makefile_d_ppc58
1 files changed, 29 insertions, 29 deletions
diff --git a/iemlib2/src/makefile_d_ppc b/iemlib2/src/makefile_d_ppc
index f9b6e25..27356de 100644
--- a/iemlib2/src/makefile_d_ppc
+++ b/iemlib2/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
-
-CFLAGS =-DPD -O2 -Wall -W -Wshadow -Wstrict-prototypes \
- -Wno-unused -Wno-parentheses -Wno-switch
-
-LFLAGS = -bundle -undefined suppress -flat_namespace
-
-# the sources
+PD_INSTALL_PATH = "/Applications/Pd.app/Contents/Resources"
+
+INCLUDE = -I. -I$(PD_INSTALL_PATH)/src
+
+CFLAGS =-DPD -DHAVE_G_CANVAS_H -O2 -Wall -W -Wshadow -Wstrict-prototypes \
+ -Wno-unused -Wno-parentheses -Wno-switch
+
+LFLAGS = -bundle -undefined suppress -flat_namespace
+
+# the sources
SRC = add2_comma.c \
aspeedlim.c \
@@ -58,24 +58,24 @@ SRC = add2_comma.c \
TARGET = iemlib2.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