summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-05-13 14:56:18 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-05-13 14:56:18 +0200
commit852d648912a9f7acf19584030feb79d555b4d9d6 (patch)
treea771e6097bb00fb30903d00ad1db7d6329b1134f
parent801d6f572af8e874e725a53652ba00615238bcfd (diff)
downloadserenity-852d648912a9f7acf19584030feb79d555b4d9d6.zip
Fix "make clean" not deleting app binaries.
-rw-r--r--Applications/About/Makefile2
-rw-r--r--Applications/Downloader/Makefile2
-rw-r--r--Applications/FileManager/Makefile2
-rw-r--r--Applications/FontEditor/Makefile2
-rw-r--r--Applications/IRCClient/Makefile2
-rw-r--r--Applications/Launcher/Makefile2
-rw-r--r--Applications/ProcessManager/Makefile2
-rw-r--r--Applications/Taskbar/Makefile2
-rw-r--r--Applications/Terminal/Makefile2
-rw-r--r--Applications/TextEditor/Makefile2
-rw-r--r--Demos/HelloWorld/Makefile2
-rw-r--r--DevTools/VisualBuilder/Makefile2
-rw-r--r--Games/Minesweeper/Makefile2
-rw-r--r--Games/Snake/Makefile2
-rw-r--r--Servers/LookupServer/Makefile2
-rw-r--r--Servers/WindowServer/Makefile2
-rw-r--r--Shell/Makefile2
17 files changed, 17 insertions, 17 deletions
diff --git a/Applications/About/Makefile b/Applications/About/Makefile
index 323301360e..c9ab2bf262 100644
--- a/Applications/About/Makefile
+++ b/Applications/About/Makefile
@@ -18,5 +18,5 @@ $(APP): $(OBJS)
-include $(OBJS:%.o=%.d)
clean:
- @echo "CLEAN"; rm -f $(APPS) $(OBJS) *.d
+ @echo "CLEAN"; rm -f $(APP) $(OBJS) *.d
diff --git a/Applications/Downloader/Makefile b/Applications/Downloader/Makefile
index cfd0bb3011..089261a6f2 100644
--- a/Applications/Downloader/Makefile
+++ b/Applications/Downloader/Makefile
@@ -18,5 +18,5 @@ $(APP): $(OBJS)
-include $(OBJS:%.o=%.d)
clean:
- @echo "CLEAN"; rm -f $(APPS) $(OBJS) *.d
+ @echo "CLEAN"; rm -f $(APP) $(OBJS) *.d
diff --git a/Applications/FileManager/Makefile b/Applications/FileManager/Makefile
index b360b66d16..d915d82c36 100644
--- a/Applications/FileManager/Makefile
+++ b/Applications/FileManager/Makefile
@@ -19,5 +19,5 @@ $(APP): $(OBJS)
-include $(OBJS:%.o=%.d)
clean:
- @echo "CLEAN"; rm -f $(APPS) $(OBJS) *.d
+ @echo "CLEAN"; rm -f $(APP) $(OBJS) *.d
diff --git a/Applications/FontEditor/Makefile b/Applications/FontEditor/Makefile
index b044d72878..08817ae0bb 100644
--- a/Applications/FontEditor/Makefile
+++ b/Applications/FontEditor/Makefile
@@ -21,5 +21,5 @@ $(APP): $(OBJS)
-include $(OBJS:%.o=%.d)
clean:
- @echo "CLEAN"; rm -f $(APPS) $(OBJS) *.d
+ @echo "CLEAN"; rm -f $(APP) $(OBJS) *.d
diff --git a/Applications/IRCClient/Makefile b/Applications/IRCClient/Makefile
index 971f1dcde2..8fdecb0170 100644
--- a/Applications/IRCClient/Makefile
+++ b/Applications/IRCClient/Makefile
@@ -27,5 +27,5 @@ $(APP): $(OBJS)
-include $(OBJS:%.o=%.d)
clean:
- @echo "CLEAN"; rm -f $(APPS) $(OBJS) *.d
+ @echo "CLEAN"; rm -f $(APP) $(OBJS) *.d
diff --git a/Applications/Launcher/Makefile b/Applications/Launcher/Makefile
index 8a39790710..9a5aac070a 100644
--- a/Applications/Launcher/Makefile
+++ b/Applications/Launcher/Makefile
@@ -18,5 +18,5 @@ $(APP): $(OBJS)
-include $(OBJS:%.o=%.d)
clean:
- @echo "CLEAN"; rm -f $(APPS) $(OBJS) *.d
+ @echo "CLEAN"; rm -f $(APP) $(OBJS) *.d
diff --git a/Applications/ProcessManager/Makefile b/Applications/ProcessManager/Makefile
index 8844330d7c..2594946209 100644
--- a/Applications/ProcessManager/Makefile
+++ b/Applications/ProcessManager/Makefile
@@ -22,5 +22,5 @@ $(APP): $(OBJS)
-include $(OBJS:%.o=%.d)
clean:
- @echo "CLEAN"; rm -f $(APPS) $(OBJS) *.d
+ @echo "CLEAN"; rm -f $(APP) $(OBJS) *.d
diff --git a/Applications/Taskbar/Makefile b/Applications/Taskbar/Makefile
index 8e15cb6cb6..866711fe40 100644
--- a/Applications/Taskbar/Makefile
+++ b/Applications/Taskbar/Makefile
@@ -21,5 +21,5 @@ $(APP): $(OBJS)
-include $(OBJS:%.o=%.d)
clean:
- @echo "CLEAN"; rm -f $(APPS) $(OBJS) *.d
+ @echo "CLEAN"; rm -f $(APP) $(OBJS) *.d
diff --git a/Applications/Terminal/Makefile b/Applications/Terminal/Makefile
index 04e40c01e2..4d0e7ce471 100644
--- a/Applications/Terminal/Makefile
+++ b/Applications/Terminal/Makefile
@@ -19,5 +19,5 @@ $(APP): $(OBJS)
-include $(OBJS:%.o=%.d)
clean:
- @echo "CLEAN"; rm -f $(APPS) $(OBJS) *.d
+ @echo "CLEAN"; rm -f $(APP) $(OBJS) *.d
diff --git a/Applications/TextEditor/Makefile b/Applications/TextEditor/Makefile
index 4c8dc105c7..a649e02bdf 100644
--- a/Applications/TextEditor/Makefile
+++ b/Applications/TextEditor/Makefile
@@ -18,5 +18,5 @@ $(APP): $(OBJS)
-include $(OBJS:%.o=%.d)
clean:
- @echo "CLEAN"; rm -f $(APPS) $(OBJS) *.d
+ @echo "CLEAN"; rm -f $(APP) $(OBJS) *.d
diff --git a/Demos/HelloWorld/Makefile b/Demos/HelloWorld/Makefile
index fe106ee912..1c2055b8fd 100644
--- a/Demos/HelloWorld/Makefile
+++ b/Demos/HelloWorld/Makefile
@@ -18,5 +18,5 @@ $(APP): $(OBJS)
-include $(OBJS:%.o=%.d)
clean:
- @echo "CLEAN"; rm -f $(APPS) $(OBJS) *.d
+ @echo "CLEAN"; rm -f $(APP) $(OBJS) *.d
diff --git a/DevTools/VisualBuilder/Makefile b/DevTools/VisualBuilder/Makefile
index 27f8dcdc5d..e2c88426f8 100644
--- a/DevTools/VisualBuilder/Makefile
+++ b/DevTools/VisualBuilder/Makefile
@@ -24,5 +24,5 @@ $(APP): $(OBJS)
-include $(OBJS:%.o=%.d)
clean:
- @echo "CLEAN"; rm -f $(APPS) $(OBJS) *.d
+ @echo "CLEAN"; rm -f $(APP) $(OBJS) *.d
diff --git a/Games/Minesweeper/Makefile b/Games/Minesweeper/Makefile
index 2c93335758..81e3948df0 100644
--- a/Games/Minesweeper/Makefile
+++ b/Games/Minesweeper/Makefile
@@ -19,5 +19,5 @@ $(APP): $(OBJS)
-include $(OBJS:%.o=%.d)
clean:
- @echo "CLEAN"; rm -f $(APPS) $(OBJS) *.d
+ @echo "CLEAN"; rm -f $(APP) $(OBJS) *.d
diff --git a/Games/Snake/Makefile b/Games/Snake/Makefile
index 75523458d1..f0af9d7cef 100644
--- a/Games/Snake/Makefile
+++ b/Games/Snake/Makefile
@@ -19,5 +19,5 @@ $(APP): $(OBJS)
-include $(OBJS:%.o=%.d)
clean:
- @echo "CLEAN"; rm -f $(APPS) $(OBJS) *.d
+ @echo "CLEAN"; rm -f $(APP) $(OBJS) *.d
diff --git a/Servers/LookupServer/Makefile b/Servers/LookupServer/Makefile
index 2833309fbc..b85335b4d5 100644
--- a/Servers/LookupServer/Makefile
+++ b/Servers/LookupServer/Makefile
@@ -19,5 +19,5 @@ $(APP): $(OBJS)
-include $(OBJS:%.o=%.d)
clean:
- @echo "CLEAN"; rm -f $(APPS) $(OBJS) *.d
+ @echo "CLEAN"; rm -f $(APP) $(OBJS) *.d
diff --git a/Servers/WindowServer/Makefile b/Servers/WindowServer/Makefile
index 542ff48408..6cfd85e28f 100644
--- a/Servers/WindowServer/Makefile
+++ b/Servers/WindowServer/Makefile
@@ -44,5 +44,5 @@ $(APP): $(OBJS)
-include $(OBJS:%.o=%.d)
clean:
- @echo "CLEAN"; rm -f $(APPS) $(OBJS) *.d
+ @echo "CLEAN"; rm -f $(APP) $(OBJS) *.d
diff --git a/Shell/Makefile b/Shell/Makefile
index fd04ce37a2..9cfea5c694 100644
--- a/Shell/Makefile
+++ b/Shell/Makefile
@@ -20,5 +20,5 @@ $(APP): $(OBJS)
-include $(OBJS:%.o=%.d)
clean:
- @echo "CLEAN"; rm -f $(APPS) $(OBJS) *.d
+ @echo "CLEAN"; rm -f $(APP) $(OBJS) *.d