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/IRCClient/Makefile | |
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/IRCClient/Makefile')
-rw-r--r-- | Applications/IRCClient/Makefile | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/Applications/IRCClient/Makefile b/Applications/IRCClient/Makefile index 8fdecb0170..fef4865cca 100644 --- a/Applications/IRCClient/Makefile +++ b/Applications/IRCClient/Makefile @@ -14,18 +14,4 @@ OBJS = \ APP = IRCClient -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 |