Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to make a modular makefile with a PATH parameter but i can't figure out how.

This is what i had before:

CC=
CFLAGS=-c -stack-protect
LDFLAGS=
SOURCES=
SSOURCES=
OBJECTS=$(SOURCES:.cpp=.o)
SOBJECTS=$(SSOURCES:.s=.o)
DEBUGFLAGS=-g -DDEBUG
EXECUTABLE=

all: CC += -DNDEBUG
all: $(SOURCES) $(SSOURCES) $(EXECUTABLE)

$(EXECUTABLE): $(OBJECTS) $(SOBJECTS)
        $(CC) $(LDFLAGS) $(OBJECTS) $(SOBJECTS) -o $@

.cpp.o:
        $(CC) $(CFLAGS) $< -o $@

.s.o:
        $(CC) $(CFLAGS) $< -o $@

debug: CFLAGS += $(DEBUGFLAGS)
debug: $(SOURCES) $(SSOURCES) $(LDFLAGS) $(EXECUTABLE)
        $(CC) $(LDFLAGS) $(OBJECTS) $(SOBJECTS) -o $(EXECUTABLE)

clean:
        rm -rf *o $(OBJECTS) $(SOBJECTS)

and this is what i'm trying to do more or less

PATH=
CC=
CFLAGS=-c -stack-protect
LDFLAGS=
SOURCES=./src1 ./src1
SSOURCES=./src1 ./src2
FSOURCES=$(SOURCES:./=$(PATH))
FSSOURCES=$(SSOURCES:./=$(PATH))
OBJECTS=$(SOURCES:.cpp=.o)
SOBJECTS=$(SSOURCES:.s=.o)
DEBUGFLAGS=-g -DDEBUG
EXECUTABLE=

all: CC += -DNDEBUG
all: $(FSOURCES) $(FSSOURCES) $(EXECUTABLE)

$(EXECUTABLE): $(OBJECTS) $(SOBJECTS)
        $(CC) $(LDFLAGS) $(OBJECTS) $(SOBJECTS) -o $@

.cpp.o:
        $(CC) $(CFLAGS) $< -o $@

.s.o:
        $(CC) $(CFLAGS) $< -o $@

debug: CFLAGS += $(DEBUGFLAGS)
debug: $(FSOURCES) $(FSSOURCES) $(LDFLAGS) $(EXECUTABLE)
        $(CC) $(LDFLAGS) $(OBJECTS) $(SOBJECTS) -o $(EXECUTABLE)

clean:
        rm -rf *o $(OBJECTS) $(SOBJECTS)

But i'm terrible at making makefiles and i have no idea how to make it work.

share|improve this question
Some inline comments and a sample error or description of what doesn't work would be helpful. I do notice that the [substitution references][gnu.org/software/make/manual/make.html#Substitution-Refs] seem to replace .cpp with .o yet your rule works on .cpp.o (same for .s). – altendky Jan 15 at 12:01
What version of Make are you using? (If you're not sure, try make -v.) – Beta Jan 15 at 17:05
I'm using 3.81. – Jean-Luc Nacif Coelho Jan 16 at 14:41

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.