diff options
author | Lawrence Manning <lawrence@aslak.net> | 2019-06-25 10:17:26 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-25 21:35:50 +0200 |
commit | f0a6b42066a2560c6fa6171bc4706b8815e32a58 (patch) | |
tree | 2ff98d0020a0a70c20fa2016751a0be336429f16 /Applications/FileManager | |
parent | 8247dad54001d62dda1bf06e1086c18e59eaec79 (diff) | |
download | serenity-f0a6b42066a2560c6fa6171bc4706b8815e32a58.zip |
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.
Diffstat (limited to 'Applications/FileManager')
-rw-r--r-- | Applications/FileManager/Makefile | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/Applications/FileManager/Makefile b/Applications/FileManager/Makefile index d915d82c36..3585e597d6 100644 --- a/Applications/FileManager/Makefile +++ b/Applications/FileManager/Makefile @@ -6,18 +6,4 @@ OBJS = \ APP = FileManager -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 |