diff options
author | Bradley Sepos <[email protected]> | 2018-06-01 17:08:13 -0400 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2018-06-17 00:23:34 -0400 |
commit | ca57c61aab7e10aa809ec84d3076a07c63bcb410 (patch) | |
tree | 3ca055d3582765b071517530feaad40e675c6890 /libhb/module.rules | |
parent | e910330e6a022f8267b61be940fc03a01fee2109 (diff) |
contrib: gtk: libhb: make: scripts: Remove yasm contrib.
Diffstat (limited to 'libhb/module.rules')
-rw-r--r-- | libhb/module.rules | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/libhb/module.rules b/libhb/module.rules index 80828577c..91dc7833f 100644 --- a/libhb/module.rules +++ b/libhb/module.rules @@ -3,7 +3,7 @@ $(eval $(call import.MODULE.rules,LIBHB)) libhb.build: $(LIBHB.a) $(LIBHB.a): | $(dir $(LIBHB.a)) -$(LIBHB.a): $(LIBHB.c.o) $(LIBHB.m.o) $(LIBHB.yasm.o) +$(LIBHB.a): $(LIBHB.c.o) $(LIBHB.m.o) $(AR.exe) rsu $@ $^ $(LIBHB.c.o): $(LIBHB.d) @@ -28,23 +28,12 @@ libhb.clean: ############################################################################### -ifneq (disabled,$(FEATURE.asm)) - -$(LIBHB.yasm.o): $(LIBHB.yasm.d) -$(LIBHB.yasm.o): | $(dir $(LIBHB.yasm.o)) -$(LIBHB.yasm.o): $(LIBHB.yasm.build/)%.o: $(LIBHB.yasm.src/)%.asm - $(call LIBHB.YASM.ASM_O,$@,$<) - -endif - -############################################################################### - ifeq (1-mingw,$(BUILD.cross)-$(BUILD.system)) libhb.build: $(LIBHB.dll) $(LIBHB.dll): | $(dirname $(LIBHB.dll) $(LIBHB.lib)) -$(LIBHB.dll): $(LIBHB.c.o) $(LIBHB.yasm.o) +$(LIBHB.dll): $(LIBHB.c.o) $(call LIBHB.GCC.DYLIB++,$@,$^ $(LIBHB.dll.libs)) ifeq (none,$(FFMPEG.GCC.g)) $(STRIP.exe) -s $(LIBHB.dll) |