1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:07:35 +00:00

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

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)