mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
add debug info to nasm debug builds
This commit is contained in:
@@ -83,7 +83,9 @@ endif
|
|||||||
%.debug.i %.release.i : %.cpp
|
%.debug.i %.release.i : %.cpp
|
||||||
$(CCC) $(CFLAGS) -E $< -o $@
|
$(CCC) $(CFLAGS) -E $< -o $@
|
||||||
|
|
||||||
%.debug.o %.release.o : %.nasm
|
%.debug.o : %.nasm
|
||||||
|
$(NASM) -f elf -d OBJ_FORMAT_elf -i ia32/ -g $< -o $@
|
||||||
|
%.release.o : %.nasm
|
||||||
$(NASM) -f elf -d OBJ_FORMAT_elf -i ia32/ $< -o $@
|
$(NASM) -f elf -d OBJ_FORMAT_elf -i ia32/ $< -o $@
|
||||||
|
|
||||||
.PHONY : clean
|
.PHONY : clean
|
||||||
|
|||||||
@@ -110,7 +110,9 @@ else
|
|||||||
$(AS) $< -o $@
|
$(AS) $< -o $@
|
||||||
endif
|
endif
|
||||||
|
|
||||||
%.debug.o %.release.o : %.nasm
|
%.debug.o : %.nasm
|
||||||
|
$(NASM) -f elf -d OBJ_FORMAT_elf -i ia32/ -g $< -o $@
|
||||||
|
%.release.o : %.nasm
|
||||||
$(NASM) -f elf -d OBJ_FORMAT_elf -i ia32/ $< -o $@
|
$(NASM) -f elf -d OBJ_FORMAT_elf -i ia32/ $< -o $@
|
||||||
|
|
||||||
.PHONY : clean
|
.PHONY : clean
|
||||||
|
|||||||
Reference in New Issue
Block a user