A shell that runs x86_64 assembly
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112131415 |
- bin_PROGRAMS = asmsh child
- noinst_LIBRARIES = libcheck_asmsh.a
-
- libcheck_asmsh_a_SOURCES = mmap_parse.c compile.c logger.c
-
- asmsh_SOURCES = asmsh.c $(libasmsh_a_SOURCES)
- child_SOURCES = child.s
-
- SUBDIRS =
- if CHECK
- SUBDIRS += tests
- endif
-
- child$(EXEEXT): $(child_SOURCES:.s=.o)
- ld $(child_LDFLAGS) -o $@ $<
|