Use explicit file names

*.o does not match ../hidtest/hidtest.o so we must use an explicit list
of .o file names
This commit is contained in:
Ludovic Rousseau 2010-12-07 17:02:46 +01:00 committed by Alan Ott
parent 81382f21d8
commit 02c55187a7

View File

@ -27,6 +27,6 @@ $(CPPOBJS): %.o: %.cpp
$(CXX) $(CFLAGS) $< -o $@
clean:
rm -f *.o hidtest
rm -f $(OBJS) hidtest
.PHONY: clean