diff options
Diffstat (limited to 'apps/wm/Makefile')
-rw-r--r-- | apps/wm/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/wm/Makefile b/apps/wm/Makefile index 66f68f6..48ed1d3 100644 --- a/apps/wm/Makefile +++ b/apps/wm/Makefile @@ -3,7 +3,8 @@ OBJS = wm.o all: $(OBJS) - @$(LD) -o $(BUILD)/apps/wm $(LDFLAGS) $< -lgui -ltxt -lc + @mkdir -p $(BUILD)/apps/wm/ + @$(LD) -o $(BUILD)/apps/wm/exec $(LDFLAGS) $< -lgui -ltxt -lc clean: @$(RM) -f $(OBJS) |