A shell that runs x86_64 assembly
c
x86-64
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.

Makefile.am 308B

123456789101112131415
  1. bin_PROGRAMS = asmsh child
  2. noinst_LIBRARIES = libcheck_asmsh.a
  3. libcheck_asmsh_a_SOURCES = mmap_parse.c compile.c logger.c
  4. asmsh_SOURCES = asmsh.c $(libasmsh_a_SOURCES)
  5. child_SOURCES = child.s
  6. SUBDIRS =
  7. if CHECK
  8. SUBDIRS += tests
  9. endif
  10. child$(EXEEXT): $(child_SOURCES:.s=.o)
  11. ld $(child_LDFLAGS) -o $@ $<