Skip to content

Commit

Permalink
On 'make clean' remove debug and test artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
Uri Blumenthal committed Sep 24, 2020
1 parent 4140eee commit 46daea7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ OABE_LIB = $(OABE_LIB_ROOT)/$(OABELIB)
all: $(BINOBJS)

clean:
-rm -rf *.o $(TESTOBJS) $(BINOBJS) $(OABELIB)
-rm -rf *.o *.dSYM input.txt $(TESTOBJS) $(BINOBJS) $(OABELIB)

install: $(BINOBJS)
for b in $(BINOBJS); do \
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ test_zsym: $(ZSYMLIB)
$(CXX) -o test_zsym $(CXX11FLAGS) $(LDFLAGS) -L. test_zsym.cpp $(ZSYMLIB) $(ZSYM_DEP_LIBS)

clean:
-rm -rf *.o a.out $(PROGRAMS) $(OABELIB) $(OABE_SHLIB) $(ZSYMLIB) $(GENFILES)
-rm -rf *.o *.dSYM a.out zparser.output $(PROGRAMS) $(OABELIB) $(OABE_SHLIB) $(ZSYMLIB) $(GENFILES)

%.o: %.cpp
$(CXX) $(CXXFLAGS) -c $<
Expand Down

0 comments on commit 46daea7

Please sign in to comment.