We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d9f55b commit 3824511Copy full SHA for 3824511
src/Makefile
@@ -22,17 +22,20 @@ share.obj: share.c
22
$(CC) $(CFLAGS)$@ $^
23
24
ifeq "$(COMPILER)" "gcc"
25
-gcc_help.obj: gcc_help.asm
+amishelp.obj: amishelp.asm
26
nasm -f elf -I ../lmacros/ -I lmacros/ $< -o $@
27
else
28
29
+ nasm -f obj -I ../lmacros/ -I lmacros/ $< -o $@
30
+
31
kitten.obj: ../kitten/kitten.c
32
33
34
tnyprntf.obj: ../tnyprntf/tnyprntf.c
35
36
endif
37
-share.com: share.obj $(EXTRA_OBJS)
38
+share.com: share.obj amishelp.obj $(EXTRA_OBJS)
39
$(LD) $(LDFLAGS)
40
$(UPXARGS) $@
41
src/gcc_help.asm src/amishelp.asmsrc/gcc_help.asm renamed to src/amishelp.asm
0 commit comments