mirror of
https://github.com/ocornut/imgui.git
synced 2025-09-19 09:48:26 +00:00
Ensure make clean
is idempotent.
Prior to this, `make clean` would fail if the project was not already fully built, and a second invokation would always fail.
This commit is contained in:
@@ -61,5 +61,5 @@ $(EXE): $(OBJS)
|
|||||||
$(CXX) -o $(EXE) $(OBJS) $(CXXFLAGS) $(LIBS)
|
$(CXX) -o $(EXE) $(OBJS) $(CXXFLAGS) $(LIBS)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm $(EXE) $(OBJS)
|
rm -f $(EXE) $(OBJS)
|
||||||
|
|
||||||
|
@@ -62,4 +62,4 @@ $(EXE): $(OBJS)
|
|||||||
$(CXX) -o $(EXE) $(OBJS) $(CXXFLAGS) $(LIBS)
|
$(CXX) -o $(EXE) $(OBJS) $(CXXFLAGS) $(LIBS)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm $(EXE) $(OBJS)
|
rm -f $(EXE) $(OBJS)
|
||||||
|
Reference in New Issue
Block a user