Re: Building eu40.4 question
- Posted by mattlewis (admin) Aug 09, 2012
- 2960 views
BRyan said...
I don't understand how these are ever being set by running wmake without passing parameters makefile has to be missing something ?
$(CONFIG) $(EOSTYPE)
Where are they initialized ??????
This is what makefile.wat contains
---------------------------------------- # Makefile for PCRE to be included into Euphoria # CC = wcc386 BASEPATH=$(BUILDDIR)\pcre !include $(CONFIG) !include objects.wat !ifeq DEBUG 1 PCREDEBUG=/d2 !endif all: $(BASEPATH) $(PCRE_OBJECTS)
What file are you looking at? You're describing the contents of source/pcre/Makefile.wat. You should not be doing anything with this file manually. As I already told you, that stuff gets initialized when wmake is called for this makefile by the makefile in the source directory.
BRyan said...
- I wanted to put $(BASEPATH) here as a dependency for .c files but
Why? What are you trying to do? I've told you how that makefile works, but since you keep asking the same questions over and over, I suspect that we need to back up a step or two to figure out what problem you are trying to solve.
Matt