Makefile
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:0k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. # Makefile for 680x0 Linux 68060 integer/floating point support package
  2. #
  3. # This file is subject to the terms and conditions of the GNU General Public
  4. # License.  See the file "README.legal" in the main directory of this archive
  5. # for more details.
  6. .S.o:
  7. $(CC) $(AFLAGS) -traditional -c -o $*.o $<
  8. OS_TARGET := ifpsp.o
  9. OS_OBJS   := fskeleton.o iskeleton.o os.o
  10. all: $(OS_TARGET)
  11. include $(TOPDIR)/Rules.make
  12. $(OS_OBJS):
  13. $(OS_TARGET): $(OS_OBJS)
  14. $(LD) -x -r -o $(OS_TARGET) $(OS_OBJS)