diff options
author | joshua stein <jcs@jcs.org> | 2019-12-18 17:35:46 -0600 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-12-20 20:20:54 +0100 |
commit | ac25438d54252d70de0002e4cca04ac258967c47 (patch) | |
tree | 61b97be561fbb395b8aa3f84135ba7400dfb38e5 /DevTools/Inspector | |
parent | f4b2b72c8efc0f6d018b199a8cc95091e7cf4c3e (diff) | |
download | serenity-ac25438d54252d70de0002e4cca04ac258967c47.zip |
Build: clean up build system, use one shared Makefile
Allow everything to be built from the top level directory with just
'make', cleaned with 'make clean', and installed with 'make
install'. Also support these in any particular subdirectory.
Specifying 'make VERBOSE=1' will print each ld/g++/etc. command as
it runs.
Kernel and early host tools (IPCCompiler, etc.) are built as
object.host.o so that they don't conflict with other things built
with the cross-compiler.
Diffstat (limited to 'DevTools/Inspector')
-rw-r--r-- | DevTools/Inspector/Makefile | 20 |
1 files changed, 3 insertions, 17 deletions
diff --git a/DevTools/Inspector/Makefile b/DevTools/Inspector/Makefile index 2430dcb4dd..09cb351a20 100644 --- a/DevTools/Inspector/Makefile +++ b/DevTools/Inspector/Makefile @@ -1,5 +1,3 @@ -include ../../Makefile.common - OBJS = \ RemoteObjectGraphModel.o \ RemoteObjectPropertyModel.o \ @@ -7,20 +5,8 @@ OBJS = \ RemoteObject.o \ main.o -APP = Inspector - -DEFINES += -DUSERLAND - -all: $(APP) +PROGRAM = Inspector -$(APP): $(OBJS) - $(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lgui -ldraw -lipc -lcore -lc - -.cpp.o: - @echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $< - --include $(OBJS:%.o=%.d) - -clean: - @echo "CLEAN"; rm -f $(APP) $(OBJS) *.d +LDFLAGS = -lgui -ldraw -lipc -lcore -lc +include ../../Makefile.common |