From f0a6b42066a2560c6fa6171bc4706b8815e32a58 Mon Sep 17 00:00:00 2001 From: Lawrence Manning Date: Tue, 25 Jun 2019 10:17:26 +0100 Subject: 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. --- Applications/FileManager/Makefile | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) (limited to 'Applications/FileManager') 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 -- cgit v1.2.3