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

Removed implicit compile rules for $(EXEODIR)/*.o (no longer needed)

parent 30b9d8c1
No related branches found
No related tags found
No related merge requests found
......@@ -180,20 +180,6 @@ LFLAGS += -L./$(LIBODIR)
SBBSLDFLAGS := $(LFLAGS) -rpath-link ./$(LIBODIR) -rpath ./
LFLAGS += -Wl,-rpath-link,./$(LIBODIR),-rpath,./
# Implicit C Compile Rule for utils
$(EXEODIR)/%.o : %.c $(BUILD_DEPENDS)
ifndef bcc
@echo $(COMPILE_MSG) $<
endif
@$(CC) $(CFLAGS) -o $@ -c $<
# Implicit C++ Compile Rule for utils
$(EXEODIR)/%.o : %.cpp $(BUILD_DEPENDS)
ifndef bcc
@echo $(COMPILE_MSG) $<
endif
@$(CCPP) $(CFLAGS) -o $@ -c $<
# Implicit C Compile Rule for SBBS
$(LIBODIR)/%.o : %.c $(BUILD_DEPENDS)
ifndef bcc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment