more x86_64 work. started to put the mmu bits together in the (former) stage2 loader.
[newos.git] / apps / shell / makefile
blob3641d435347ed0986fc98cd2810d987ad9eea4e0
1 # app makefile
2 MY_TARGETDIR := $(APPS_BUILD_DIR)/shell
3 MY_SRCDIR := $(APPS_DIR)/shell
4 MY_TARGET := $(MY_TARGETDIR)/shell
5 ifeq ($(call FINDINLIST,$(MY_TARGET),$(ALL)),1)
7 MY_SRCS := \
8 commands.c \
9 main.c \
10 parse.c \
11 statements.c \
12 shell_vars.c \
13 file_utils.c \
14 script.c \
15 args.c
17 MY_INCLUDES := $(STDINCLUDE)
18 MY_CFLAGS := $(USER_CFLAGS)
19 MY_LIBS := -lc -lnewos -lsupc++
20 MY_LIBPATHS :=
21 MY_DEPS :=
22 MY_GLUE := $(APPSGLUE)
24 include templates/app.mk
26 endif