1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:27:46 +00:00

Move common Application build steps into their own Makefile.common

Further consolidation is of course possible, eg the Games/ programs
follow the same rules more or less.
This commit is contained in:
Lawrence Manning 2019-06-25 10:17:26 +01:00 committed by Andreas Kling
parent 8247dad540
commit f0a6b42066
13 changed files with 26 additions and 180 deletions

View file

@ -9,18 +9,4 @@ OBJS = \
APP = ProcessManager
DEFINES += -DUSERLAND
all: $(APP)
$(APP): $(OBJS)
$(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lgui -lcore -lc
.cpp.o:
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<
-include $(OBJS:%.o=%.d)
clean:
@echo "CLEAN"; rm -f $(APP) $(OBJS) *.d
include ../Makefile.common