summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Applications/FontEditor/Makefile2
-rw-r--r--Servers/AudioServer/Makefile4
-rw-r--r--Servers/ProtocolServer/Makefile4
-rw-r--r--Servers/WindowServer/Makefile4
4 files changed, 7 insertions, 7 deletions
diff --git a/Applications/FontEditor/Makefile b/Applications/FontEditor/Makefile
index 34ad2b4cf1..e1e2904d7b 100644
--- a/Applications/FontEditor/Makefile
+++ b/Applications/FontEditor/Makefile
@@ -10,7 +10,7 @@ LIB_DEPS = GUI Draw Core IPC
FontEditor.cpp: UI_FontEditorBottom.h
-UI_FontEditorBottom.h: FontEditorBottom.frm FORMCOMPILER
+UI_FontEditorBottom.h: FontEditorBottom.frm | FORMCOMPILER
$(QUIET) $(FORMCOMPILER) $< > $@
EXTRA_CLEAN = UI_FontEditorBottom.h
diff --git a/Servers/AudioServer/Makefile b/Servers/AudioServer/Makefile
index d08cf0a34f..2955a06a97 100644
--- a/Servers/AudioServer/Makefile
+++ b/Servers/AudioServer/Makefile
@@ -12,10 +12,10 @@ EXTRA_CLEAN = AudioServerEndpoint.h AudioClientEndpoint.h
*.cpp: AudioServerEndpoint.h AudioClientEndpoint.h
-AudioServerEndpoint.h: AudioServer.ipc IPCCOMPILER
+AudioServerEndpoint.h: AudioServer.ipc | IPCCOMPILER
@echo "IPC $<"; $(IPCCOMPILER) $< > $@
-AudioClientEndpoint.h: AudioClient.ipc IPCCOMPILER
+AudioClientEndpoint.h: AudioClient.ipc | IPCCOMPILER
@echo "IPC $<"; $(IPCCOMPILER) $< > $@
install:
diff --git a/Servers/ProtocolServer/Makefile b/Servers/ProtocolServer/Makefile
index b4e434345d..4a8ff50129 100644
--- a/Servers/ProtocolServer/Makefile
+++ b/Servers/ProtocolServer/Makefile
@@ -12,10 +12,10 @@ LIB_DEPS = Core IPC
*.cpp: ProtocolServerEndpoint.h ProtocolClientEndpoint.h
-ProtocolServerEndpoint.h: ProtocolServer.ipc IPCCOMPILER
+ProtocolServerEndpoint.h: ProtocolServer.ipc | IPCCOMPILER
@echo "IPC $<"; $(IPCCOMPILER) $< > $@
-ProtocolClientEndpoint.h: ProtocolClient.ipc IPCCOMPILER
+ProtocolClientEndpoint.h: ProtocolClient.ipc | IPCCOMPILER
@echo "IPC $<"; $(IPCCOMPILER) $< > $@
include ../../Makefile.common
diff --git a/Servers/WindowServer/Makefile b/Servers/WindowServer/Makefile
index 508c7de1bd..1ba3e8ae92 100644
--- a/Servers/WindowServer/Makefile
+++ b/Servers/WindowServer/Makefile
@@ -22,10 +22,10 @@ LIB_DEPS = Draw Core Thread Pthread IPC
*.cpp: WindowServerEndpoint.h WindowClientEndpoint.h
-WindowServerEndpoint.h: WindowServer.ipc IPCCOMPILER
+WindowServerEndpoint.h: WindowServer.ipc | IPCCOMPILER
@echo "IPC $<"; $(IPCCOMPILER) $< > $@
-WindowClientEndpoint.h: WindowClient.ipc IPCCOMPILER
+WindowClientEndpoint.h: WindowClient.ipc | IPCCOMPILER
@echo "IPC $<"; $(IPCCOMPILER) $< > $@
EXTRA_CLEAN = WindowServerEndpoint.h WindowClientEndpoint.h