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:
parent
e63cc38861
commit
fe73543d41
7 changed files with 217 additions and 180 deletions
23
Shell/Makefile
Normal file
23
Shell/Makefile
Normal 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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue