Makefile fix: Fix gm build for Linux.
Also add a rule to build assembly files from .cpp's. http://codereview.appspot.com/143060 git-svn-id: http://skia.googlecode.com/svn/trunk@413 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
parent
3f2025fdb5
commit
4aa910ea93
8
Makefile
8
Makefile
@ -81,6 +81,10 @@ out/%.o : %.cpp
|
||||
$(HIDE)$(CC) $(C_INCLUDES) $(CFLAGS) $(DEFINES) -c $< -o $@
|
||||
@echo "compiling $@"
|
||||
|
||||
%.s : %.cpp
|
||||
@mkdir -p $(dir $@)
|
||||
$(CC) $(C_INCLUDES) $(CFLAGS) $(DEFINES) -S -c $< -o $@
|
||||
|
||||
# now build out objects
|
||||
OBJ_LIST := $(SRC_LIST:.cpp=.o)
|
||||
OBJ_LIST := $(addprefix out/, $(OBJ_LIST))
|
||||
@ -146,6 +150,10 @@ skimage: $(SKIMAGE_OBJS) out/libskia.a
|
||||
include gm/gm_files.mk
|
||||
GM_SRCS := $(addprefix gm/, $(SOURCE))
|
||||
|
||||
ifneq ($(SKIA_BUILD_FOR),mac)
|
||||
GM_SRCS += src/images/SkImageDecoder_libpng.cpp
|
||||
endif
|
||||
|
||||
GM_OBJS := $(GM_SRCS:.cpp=.o)
|
||||
GM_OBJS := $(addprefix out/, $(GM_OBJS))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user