File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ LIBS = libdj64_s.a
1919SOURCES = thunks.c thunks_a.c thunks_c.c thunks_p.c dosobj.c
2020OBJECTS = $(SOURCES:.c=.o )
2121
22- .INTERMEDIATE : thunk_syms.s thunk_syms.ss
22+ # .INTERMEDIATE: thunk_syms.s thunk_syms.ss
2323thunk_syms.ss : thunk_syms.c asm_incsn.h
2424ifeq ($(CC_IS_CLANG ) ,1)
2525 $(XCPP) -CC -g0 $< | $(CC) -xc - -target i686-unknown-linux-gnu -S $(EXTRA_CFLAGS) -o $@
Original file line number Diff line number Diff line change 1- F_STRS=.arch\| .addrsig\| .fpu\| .eabi_attribute
2- ARCH=` head -n 1 $1 | grep .arch | cut -d " " -f 2`
1+ F_STRS=\\ .arch\|\\ .addrsig\|\\ .fpu\|\\ .eabi_attribute\|\\ .option \|\\ .attribute
2+ ARCH=` grep .arch $1 | cut -d " " -f 2`
33if [ -z " $ARCH " ]; then
4- cat $1 | grep -E -v $F_STRS
4+ grep -E -v $F_STRS $1
55 exit 0
66fi
7- cat $1 | grep -E -v $F_STRS | sed ' s/.align/.p2align/g'
7+ grep -E -v $F_STRS $1 | sed -E ' s/\ .align/\ .p2align/g'
You can’t perform that action at this time.
0 commit comments