Skip to content

Commit

Permalink
Build: Userland: no need for duplicate .cpp->.o rule
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs authored and awesomekling committed Jan 1, 2020
1 parent 31732d1 commit a1fd2eb
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions Userland/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit a1fd2eb

Please sign in to comment.