diff options
Diffstat (limited to '3rdparty/genie/build/gmake.darwin/genie.make')
-rw-r--r-- | 3rdparty/genie/build/gmake.darwin/genie.make | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/3rdparty/genie/build/gmake.darwin/genie.make b/3rdparty/genie/build/gmake.darwin/genie.make index 90c5015bd0e..1da9d12815c 100644 --- a/3rdparty/genie/build/gmake.darwin/genie.make +++ b/3rdparty/genie/build/gmake.darwin/genie.make @@ -108,6 +108,9 @@ ifeq ($(config),release) $(OBJDIR)/src/host/os_stat.o \ $(OBJDIR)/src/host/os_ticks.o \ $(OBJDIR)/src/host/os_uuid.o \ + $(OBJDIR)/src/host/path_getabsolute.o \ + $(OBJDIR)/src/host/path_getrelative.o \ + $(OBJDIR)/src/host/path_helpers.o \ $(OBJDIR)/src/host/path_isabsolute.o \ $(OBJDIR)/src/host/premake.o \ $(OBJDIR)/src/host/premake_main.o \ @@ -189,6 +192,9 @@ ifeq ($(config),debug) $(OBJDIR)/src/host/os_stat.o \ $(OBJDIR)/src/host/os_ticks.o \ $(OBJDIR)/src/host/os_uuid.o \ + $(OBJDIR)/src/host/path_getabsolute.o \ + $(OBJDIR)/src/host/path_getrelative.o \ + $(OBJDIR)/src/host/path_helpers.o \ $(OBJDIR)/src/host/path_isabsolute.o \ $(OBJDIR)/src/host/premake.o \ $(OBJDIR)/src/host/premake_main.o \ @@ -271,6 +277,9 @@ ifeq ($(config),releaseuniv32) $(OBJDIR)/src/host/os_stat.o \ $(OBJDIR)/src/host/os_ticks.o \ $(OBJDIR)/src/host/os_uuid.o \ + $(OBJDIR)/src/host/path_getabsolute.o \ + $(OBJDIR)/src/host/path_getrelative.o \ + $(OBJDIR)/src/host/path_helpers.o \ $(OBJDIR)/src/host/path_isabsolute.o \ $(OBJDIR)/src/host/premake.o \ $(OBJDIR)/src/host/premake_main.o \ @@ -353,6 +362,9 @@ ifeq ($(config),debuguniv32) $(OBJDIR)/src/host/os_stat.o \ $(OBJDIR)/src/host/os_ticks.o \ $(OBJDIR)/src/host/os_uuid.o \ + $(OBJDIR)/src/host/path_getabsolute.o \ + $(OBJDIR)/src/host/path_getrelative.o \ + $(OBJDIR)/src/host/path_helpers.o \ $(OBJDIR)/src/host/path_isabsolute.o \ $(OBJDIR)/src/host/premake.o \ $(OBJDIR)/src/host/premake_main.o \ @@ -603,6 +615,18 @@ $(OBJDIR)/src/host/os_uuid.o: ../../src/host/os_uuid.c $(GCH) $(MAKEFILE) @echo $(notdir $<) $(SILENT) $(CC) $(ALL_CFLAGS) $(FORCE_INCLUDE) -o "$@" -c "$<" +$(OBJDIR)/src/host/path_getabsolute.o: ../../src/host/path_getabsolute.c $(GCH) $(MAKEFILE) + @echo $(notdir $<) + $(SILENT) $(CC) $(ALL_CFLAGS) $(FORCE_INCLUDE) -o "$@" -c "$<" + +$(OBJDIR)/src/host/path_getrelative.o: ../../src/host/path_getrelative.c $(GCH) $(MAKEFILE) + @echo $(notdir $<) + $(SILENT) $(CC) $(ALL_CFLAGS) $(FORCE_INCLUDE) -o "$@" -c "$<" + +$(OBJDIR)/src/host/path_helpers.o: ../../src/host/path_helpers.c $(GCH) $(MAKEFILE) + @echo $(notdir $<) + $(SILENT) $(CC) $(ALL_CFLAGS) $(FORCE_INCLUDE) -o "$@" -c "$<" + $(OBJDIR)/src/host/path_isabsolute.o: ../../src/host/path_isabsolute.c $(GCH) $(MAKEFILE) @echo $(notdir $<) $(SILENT) $(CC) $(ALL_CFLAGS) $(FORCE_INCLUDE) -o "$@" -c "$<" |