diff options
Diffstat (limited to 'apps/chess/Makefile')
-rw-r--r-- | apps/chess/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/chess/Makefile b/apps/chess/Makefile index 549b603..b538807 100644 --- a/apps/chess/Makefile +++ b/apps/chess/Makefile @@ -4,7 +4,7 @@ OBJS = chess.o all: $(OBJS) @mkdir -p $(BUILD)/apps/chess/ - @$(LD) -o $(BUILD)/apps/chess/exec $(LDFLAGS) $< -lgui -ltxt -lc + @$(LD) -o $(BUILD)/apps/chess/exec $(LDFLAGS) $^ -lgui -ltxt -lc clean: @$(RM) -f $(OBJS) |