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 276B

1234567891011
  1. if CHECK
  2. noinst_PROGRAMS = asm_env_stamps
  3. EXTRA_DIST=procfs_pid_maps procfs_pid_maps_sm sample.history
  4. asm_env_stamps_SOURCES = asm_env_stamps.s
  5. asm_env_stamps_CCASFLAGS = -g -O0
  6. asm_env_stamps$(EXEEXT): $(asm_env_stamps_SOURCES:.s=.o)
  7. ld $(child_LDFLAGS) -o $@ $<
  8. endif