diff options
Diffstat (limited to 'Userland/Makefile')
-rw-r--r-- | Userland/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Userland/Makefile b/Userland/Makefile index 0266a2edd0..ec3fddd381 100644 --- a/Userland/Makefile +++ b/Userland/Makefile @@ -1,10 +1,12 @@ OBJS = \ id.o \ - sh.o + sh.o \ + ps.o APPS = \ id \ - sh + sh \ + ps ARCH_FLAGS = STANDARD_FLAGS = -std=c++17 -nostdinc++ -nostdlib @@ -30,6 +32,9 @@ id: id.o sh: sh.o $(LD) -o $@ $(LDFLAGS) $< ../LibC/LibC.a +ps: ps.o + $(LD) -o $@ $(LDFLAGS) $< ../LibC/LibC.a + .cpp.o: @echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $< |