Skip to content

Commit

Permalink
Fix to pass the checkmake lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
junaruga committed Dec 3, 2021
1 parent a737fd5 commit 51c4648
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ LIBS =
.c.o :
$(CC) -c $(CFLAGS) $(CPPFLAGS) $(INCLUDES) $< -o $@

.PHONY : all
.PHONY: all
all : $(EXE)

$(EXE) : $(OBJS) main.o
$(CXX) $(CXXFLAGS) $^ -o $@ $(LIBS)

.PHONY : clean
.PHONY: clean
clean :
rm -f *.o $(EXE)

.PHONY : test
.PHONY: test
test : all
echo "Run the test"

0 comments on commit 51c4648

Please sign in to comment.