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 f5018664c0..7dc23d5970 100644 --- a/Userland/Makefile +++ b/Userland/Makefile @@ -18,7 +18,8 @@ OBJS = \ tty.o \ mkdir.o \ touch.o \ - more.o + more.o \ + guitest.o APPS = \ id \ @@ -41,7 +42,8 @@ APPS = \ mkdir \ touch \ sync \ - more + more \ + guitest ARCH_FLAGS = STANDARD_FLAGS = -std=c++17 -nostdinc++ -nostdlib -nostdinc @@ -124,6 +126,9 @@ sync: sync.o more: more.o $(LD) -o $@ $(LDFLAGS) $< ../LibC/LibC.a +guitest: guitest.o + $(LD) -o $@ $(LDFLAGS) $< ../LibC/LibC.a + .cpp.o: @echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $< |