1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:57:34 +00:00

Shell: Move the Shell to a separate directory and let's call it "Shell" :^)

This commit is contained in:
Andreas Kling 2019-05-07 01:12:08 +02:00
parent e63cc38861
commit fe73543d41
7 changed files with 217 additions and 180 deletions

23
Shell/Makefile Normal file
View file

@ -0,0 +1,23 @@
include ../Makefile.common
OBJS = \
Parser.o \
main.o
APP = Shell
DEFINES += -DUSERLAND
all: $(APP)
$(APP): $(OBJS)
$(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lcore -lc
.cpp.o:
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<
-include $(OBJS:%.o=%.d)
clean:
@echo "CLEAN"; rm -f $(APPS) $(OBJS) *.d