Hi there,
I just downloaded and installed PODS 1.0. I created a test app using the project wizard, and chose "Managed Make 68K C/C++ Project", and used the defaults for the remaining dialogs. For "Project Code Generation" I selected "Sample" to get a functioning sample application.
When the app is built, the following errors are reported in the makefile. Any idea what the problem is?
Regards, Ingemar
-------------------------------------------------------- make clean all MAKE Version 5.2 Copyright (c) 1987, 1998 Inprise Corp. Error makefile 19: Command syntax error Error makefile 27: Command syntax error Error makefile 41: Command syntax error Error makefile 42: Command syntax error Error makefile 52: Colon expected Error makefile 55: Command syntax error *** 6 errors during make *** Build complete for project test1 --------------------------------------------------------
...and the makefile looks like this (line numbers included [###1-##55]):
--------------------------------------------------------
###1 ROOT := ..
###2 RM := rm -rf
###3
###4 # Each subdirectory must contribute its source files here
###5 xrd_SRCS :=
###6 XRD_SRCS :=
###7 trc_OBJS += $(xrd_SRCS:$(ROOT)/%.xrd=%.trc) $(XRD_SRCS:$(ROOT)/%.XRD=%.trc)
###8
###9 c_SRCS :=
##10 cc_SRCS :=
##11 cpp_SRCS :=
##12 cxx_SRCS :=
##13 C_SRCS :=
##14 o_OBJS += $(c_SRCS:$(ROOT)/%.c=%.o) $(cc_SRCS:$(ROOT)/%.cc=%.o) $(cpp_SRCS:$(ROOT)/%.cpp=%.o) $(cxx_SRCS:$(ROOT)/%.cxx=%.o) $(C_SRCS:$(ROOT)/%.C=%.o)
##15
##16
##17
##18 -include $(ROOT)/auto-generated.mk
##19
##20 # Every subdirectory with source files must be described here
##21 SUBDIRS := \
##22 src \
##23 rsc \
##24
##25 # Include the makefiles for each source subdirectory
##26 -include ${patsubst %, %/subdir.mk, $(SUBDIRS)}
##27
##28
##29 SEGMENT_BASE = multiple_code_sections
##30 MULTISEGMENT_LINKER_INPUT =
##31
##32 all: test1.prc
##33
##34 buildprc_temp.prc: $(ARTIFACT_NAME)
##35 build-prc -c '$(CREATOR_ID)' -n $(ARTIFACT_NAME) -o "$@" $(ARTIFACT_NAME)
##36
##37 prcmerge_temp.prc: buildprc_temp.prc
##38 "$(TOOLS_DIR)PRCMerge" -quiet -omit pref -o "$@" buildprc_temp.prc
##39
##40 $(ARTIFACT_NAME): $(o_OBJS) $(MULTISEGMENT_LINKER_INPUT)
##41 m68k-palmos-gcc -g -o "$@" $(o_OBJS) $(MULTISEGMENT_LINKER_INPUT)
##42
##43 test1.prc: prcmerge_temp.prc $(trc_OBJS)
##44 "$(TOOLS_DIR)PRCMerge" -quiet -dbVersion $(DATABASE_VERSION) -dbType '$(DB_TYPE)' -dbCreator '$(CREATOR_ID)' -n $(ARTIFACT_NAME) $(DATABASE_BACKUP) $(DATABASE_HIDDEN) $(DATABASE_RESET) $(DATABASE_PROTECT) $(DATABASE_BUNDLE) -o "$@" prcmerge_temp.prc $(trc_OBJS)
##45
##46 clean:
##47 -$(RM) $(o_OBJS) $(prc_OBJS) $(trc_OBJS) multiple_code_sections.s buildprc_temp.prc test1.prc $(ARTIFACT_NAME) multiple_code_sections.o multiple_code_sections.ld prcmerge_temp.prc
##48
##49 .PHONY: all clean deps
##50
##51 .INTERMEDIATE: buildprc_temp.prc prcmerge_temp.prc
##52
##53 # Include automatically-generated dependency list:
##54 -include ${patsubst %, %/subdir.dep, $(SUBDIRS)}
##55
--------------------------------------------------------
-- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
