Home | History | Annotate | Download | only in stage1
      1 pkglibdir = $(libdir)/$(PACKAGE)/$(host_cpu)-$(host_vendor)
      2 nodist_pkglib_DATA = stage1
      3 
      4 CLEANFILES = $(nodist_pkglib_DATA)
      5 
      6 # We can't use builtins or standard includes.
      7 AM_CCASFLAGS = $(STAGE1_CFLAGS) -fno-builtin -nostdinc
      8 LDFLAGS = -nostdlib -Wl,-N,-Ttext,7C00
      9 
     10 noinst_PROGRAMS = stage1.exec
     11 stage1_exec_SOURCES = stage1.S stage1.h
     12 
     13 SUFFIXES = .exec
     14 .exec:
     15 	$(OBJCOPY) -O binary $< $@
     16