Skip to content
Snippets Groups Projects
Commit 22a4ec36 authored by deuce's avatar deuce
Browse files

Add rules.mk which I accidently left out... this should fix all the

missing target errors.
parent df707a9c
Branches
Tags
No related merge requests found
# Implicit C Compile Rule
$(LIBODIR)/%.o : %.c $(BUILD_DEPENDS)
@echo $(COMPILE_MSG) $<
$(QUIET)$(CC) $(CFLAGS) -o $@ -c $<
# Implicit C++ Compile Rule
$(LIBODIR)/%.o : %.cpp $(BUILD_DEPENDS)
@echo $(COMPILE_MSG) $<
$(QUIET)$(CXX) $(CFLAGS) -o $@ -c $<
$(LIBODIR):
@echo Creating $(LIBODIR)
$(QUIET)mkdir $(LIBODIR)
$(EXEODIR):
@echo Creating $(LIBODIR)
$(QUIET)mkdir $(EXEODIR)
clean:
@echo Deleting $(LIBODIR)$(SLASH)
$(QUIET)$(DELETE) $(LIBODIR)$(SLASH)*
@echo Deleting $(EXEODIR)$(SLASH)
$(QUIET)$(DELETE) $(EXEODIR)$(SLASH)*
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment