fix link target in makefile

This commit is contained in:
Christopher Mosher 2013-12-13 09:57:31 -05:00
parent 09acc8940b
commit 61c95521b1
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ DEPS = $(SRCS:.cpp=.d)
all: v6502
v6502: $(OBJS)
$(CXX) $(CXXFLAGS) $(LDFLAGS) $(OBJS) -o $(TARGET)
$(CXX) $(CXXFLAGS) $(LDFLAGS) $(OBJS) -o $@
-include $(DEPS)