Skip to content
Snippets Groups Projects
Commit 3ca754cf authored by bbartels's avatar bbartels
Browse files

quad: add warning flags to compliling

resolves #10
parent 887f081d
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ $(TARGET): $(OBJECTS) | $(EXEDIR)
$(GCC) -g -o $(TARGET) $^ -I$(INCDIR) -L$(LIBDIR) $(REQLIBS)
$(OBJDIR)/%.o : %.c | $(OBJDIR) $(INCDIR)
$(GCC) -c -g -o $@ $< -I$(INCDIR)
$(GCC) -c -g -o $@ $< -I$(INCDIR) -Wall
$(OBJDIR):
mkdir $(OBJDIR)
......
......@@ -37,7 +37,7 @@ $(TARGET): $(OBJECTS) | $(LIBDIR)
$(AR) rcs $@ $^
$(OBJDIR)/%.o : %.c | $(OBJDIR) $(INCDIR)
$(GCC) -c -g -o $@ $< -I$(INCDIR)
$(GCC) -c -g -o $@ $< -I$(INCDIR) -Wall
$(INCDIR)/%.h : %.h | $(INCDIR)
cp $^ $(INCDIR)
......
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