diff options
-rw-r--r-- | apps/chess/Makefile | 2 | ||||
-rw-r--r-- | apps/idle/Makefile | 2 | ||||
-rw-r--r-- | apps/init/Makefile | 2 | ||||
-rw-r--r-- | apps/test/Makefile | 2 | ||||
-rw-r--r-- | apps/wm/Makefile | 2 | ||||
-rw-r--r-- | libs/libc/Makefile | 2 |
6 files changed, 6 insertions, 6 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) 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) diff --git a/apps/init/Makefile b/apps/init/Makefile index b56c344..3547797 100644 --- a/apps/init/Makefile +++ b/apps/init/Makefile @@ -4,7 +4,7 @@ OBJS = init.o all: $(OBJS) @mkdir -p $(BUILD)/apps/init/ - @$(LD) -o $(BUILD)/apps/init/exec $(LDFLAGS) $< -lc + @$(LD) -o $(BUILD)/apps/init/exec $(LDFLAGS) $^ -lc clean: @$(RM) -f $(OBJS) diff --git a/apps/test/Makefile b/apps/test/Makefile index cbd3b57..2b4a33b 100644 --- a/apps/test/Makefile +++ b/apps/test/Makefile @@ -4,7 +4,7 @@ OBJS = test.o all: $(OBJS) @mkdir -p $(BUILD)/apps/test/ - @$(LD) -o $(BUILD)/apps/test/exec $(LDFLAGS) $< -lc + @$(LD) -o $(BUILD)/apps/test/exec $(LDFLAGS) $^ -lc clean: @$(RM) -f $(OBJS) diff --git a/apps/wm/Makefile b/apps/wm/Makefile index 48ed1d3..abceef7 100644 --- a/apps/wm/Makefile +++ b/apps/wm/Makefile @@ -4,7 +4,7 @@ OBJS = wm.o all: $(OBJS) @mkdir -p $(BUILD)/apps/wm/ - @$(LD) -o $(BUILD)/apps/wm/exec $(LDFLAGS) $< -lgui -ltxt -lc + @$(LD) -o $(BUILD)/apps/wm/exec $(LDFLAGS) $^ -lgui -ltxt -lc clean: @$(RM) -f $(OBJS) diff --git a/libs/libc/Makefile b/libs/libc/Makefile index 0cf1b14..dde7288 100644 --- a/libs/libc/Makefile +++ b/libs/libc/Makefile @@ -14,7 +14,7 @@ COBJS = crt/crt0.o \ sys.o \ list.o \ stack.o \ - random.o + rand.o CFLAGS = $(CFLAGS_DEFAULT) -Iinc/ ASFLAGS = -f elf32 |