diff options
author | musil <tmusil@users.sourceforge.net> | 2009-03-12 18:55:38 +0000 |
---|---|---|
committer | musil <tmusil@users.sourceforge.net> | 2009-03-12 18:55:38 +0000 |
commit | 5dc4226d011fd997870064f836b1a4609d7ab4bb (patch) | |
tree | a614694b25122921743ff045c84657d682ba8a41 /src/makefile_d_fat | |
parent | f31e4e33613129bf55d296c564579534966a33c9 (diff) |
chanded some variable names
svn path=/trunk/externals/iem/iemgui/; revision=10861
Diffstat (limited to 'src/makefile_d_fat')
-rw-r--r-- | src/makefile_d_fat | 53 |
1 files changed, 27 insertions, 26 deletions
diff --git a/src/makefile_d_fat b/src/makefile_d_fat index 1b49c50..090483d 100644 --- a/src/makefile_d_fat +++ b/src/makefile_d_fat @@ -1,34 +1,35 @@ current: all
-.SUFFIXES: .d_fat - +.SUFFIXES: .d_fat
+
PD_INSTALL_PATH = "/Applications/Pd.app/Contents/Resources"
INCLUDE = -I. -I$(PD_INSTALL_PATH)/src
-CFLAGS =-DPD -O2 -Wall -W -Wshadow -Wstrict-prototypes \ +CFLAGS =-DPD -O2 -Wall -W -Wshadow -Wstrict-prototypes \
-Wno-unused -Wno-parentheses -Wno-switch
LFLAGS = -bundle -undefined suppress -flat_namespace
# the sources
- -SRC = room_sim_2d.c \ - room_sim_3d.c \ - cube_sphere.c \ - sym_dial.c \ - iem_image.c \ - iem_vu.c \ - hfadl_scale.c \ - hfadr_scale.c \ - vfad_scale.c \ - numberbox_matrix.c \ - iem_event.c \ - iemgui.c - -TARGET = iemgui.d_fat - - +
+SRC = room_sim_2d.c \
+ room_sim_3d.c \
+ cube_sphere.c \
+ sym_dial.c \
+ iem_image.c \
+ iem_vu.c \
+ hfadl_scale.c \
+ hfadr_scale.c \
+ vfad_scale.c \
+ vfad_test.c \
+ numberbox_matrix.c \
+ iem_event.c \
+ iemgui.c
+
+TARGET = iemgui.d_fat
+
+
OBJ = $(SRC:.c=.o)
#
@@ -41,14 +42,14 @@ clean: all: $(OBJ)
@echo :: $(OBJ)
- $(CC) -arch i386 -arch ppc $(LFLAGS) -o $(TARGET) *.o + $(CC) -arch i386 -arch ppc $(LFLAGS) -o $(TARGET) *.o
strip -S -x $(TARGET)
mv $(TARGET) ..
$(OBJ) : %.o : %.c
touch $*.c
- $(CC) -arch i386 -arch ppc $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c - - - - + $(CC) -arch i386 -arch ppc $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c
+
+
+
+
|