Skip to content
Snippets Groups Projects
Commit f3457ca0 authored by rswindell's avatar rswindell
Browse files

Added implicit C++ compile rule for util objects (EXEODIR).

parent de526560
Branches
Tags
No related merge requests found
...@@ -122,6 +122,13 @@ $(EXEODIR)/%.o : %.c ...@@ -122,6 +122,13 @@ $(EXEODIR)/%.o : %.c
endif endif
@$(CC) $(CFLAGS) -o $@ -c $< @$(CC) $(CFLAGS) -o $@ -c $<
# Implicit C++ Compile Rule for utils
$(EXEODIR)/%.o : %.cpp
ifndef bcc
@echo Compiling $<
endif
@$(CC) $(CFLAGS) -o $@ -c $<
# Implicit C Compile Rule for SBBS # Implicit C Compile Rule for SBBS
$(LIBODIR)/%.o : %.c $(LIBODIR)/%.o : %.c
ifndef bcc ifndef bcc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment