diff options
author | Marvin Borner | 2021-04-23 14:19:14 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-23 14:19:14 +0200 |
commit | 5c708d6c25321a2ea7a985e6f9f8b2a5ed84c74f (patch) | |
tree | 0d261f41b3a86b5d515238646bfa6ce86fd06d38 /apps/idle | |
parent | e1fea940e4c642b1c883429ed5f2a69d51b84270 (diff) |
Fixed makefiles
Diffstat (limited to 'apps/idle')
-rw-r--r-- | apps/idle/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/idle/Makefile b/apps/idle/Makefile index dc979b3..28145b4 100644 --- a/apps/idle/Makefile +++ b/apps/idle/Makefile @@ -4,7 +4,7 @@ OBJS = idle.o all: $(OBJS) @mkdir -p $(BUILD)/apps/idle/ - @$(LD) -o $(BUILD)/apps/idle/exec $(LDFLAGS) $< -lc + @$(LD) -o $(BUILD)/apps/idle/exec $(LDFLAGS) $^ -lc clean: @$(RM) -f $(OBJS) |