Build: Userland: no need for duplicate .cpp->.o rule

This commit is contained in:
joshua stein 2020-01-01 13:20:03 -06:00 committed by Andreas Kling
parent 31732d163f
commit a1fd2eb237
Notes: sideshowbarker 2024-07-19 10:28:00 +09:00

View File

@ -13,10 +13,6 @@ all: $(APPS)
list:
@echo $(APPS)
%.o: %.cpp
@echo "C++ $@"
$(QUIET) $(CXX) $(CXXFLAGS) -o $@ -c $<
$(APPS): %: %.o $(STATIC_LIB_DEPS)
@echo "LINK $@"
$(QUIET) $(CXX) -o $@ $< $(LDFLAGS)