Skip to content

Commit 3824511

Browse files
committed
rename gcc_help.asm to amishelp.asm (start of adding AMIS support to more than gcc build)
1 parent 6d9f55b commit 3824511

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,20 @@ share.obj: share.c
2222
$(CC) $(CFLAGS)$@ $^
2323

2424
ifeq "$(COMPILER)" "gcc"
25-
gcc_help.obj: gcc_help.asm
25+
amishelp.obj: amishelp.asm
2626
nasm -f elf -I ../lmacros/ -I lmacros/ $< -o $@
2727
else
28+
amishelp.obj: amishelp.asm
29+
nasm -f obj -I ../lmacros/ -I lmacros/ $< -o $@
30+
2831
kitten.obj: ../kitten/kitten.c
2932
$(CC) $(CFLAGS)$@ $^
3033

3134
tnyprntf.obj: ../tnyprntf/tnyprntf.c
3235
$(CC) $(CFLAGS)$@ $^
3336
endif
3437

35-
share.com: share.obj $(EXTRA_OBJS)
38+
share.com: share.obj amishelp.obj $(EXTRA_OBJS)
3639
$(LD) $(LDFLAGS)
3740
$(UPXARGS) $@
3841

File renamed without changes.

0 commit comments

Comments
 (0)