You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 2.4 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. TOPDIR = ../..
  2. include ../../Makefile.system
  3. SBLASOBJS = spotf2_U.$(SUFFIX) spotf2_L.$(SUFFIX)
  4. DBLASOBJS = dpotf2_U.$(SUFFIX) dpotf2_L.$(SUFFIX)
  5. QBLASOBJS = qpotf2_U.$(SUFFIX) qpotf2_L.$(SUFFIX)
  6. CBLASOBJS = cpotf2_U.$(SUFFIX) cpotf2_L.$(SUFFIX)
  7. ZBLASOBJS = zpotf2_U.$(SUFFIX) zpotf2_L.$(SUFFIX)
  8. XBLASOBJS = xpotf2_U.$(SUFFIX) xpotf2_L.$(SUFFIX)
  9. spotf2_U.$(SUFFIX) : potf2_U.c
  10. $(CC) -c $(CFLAGS) -UCOMPLEX -UDOUBLE $< -o $(@F)
  11. spotf2_L.$(SUFFIX) : potf2_L.c
  12. $(CC) -c $(CFLAGS) -UCOMPLEX -UDOUBLE $< -o $(@F)
  13. dpotf2_U.$(SUFFIX) : potf2_U.c
  14. $(CC) -c $(CFLAGS) -UCOMPLEX -DDOUBLE $< -o $(@F)
  15. dpotf2_L.$(SUFFIX) : potf2_L.c
  16. $(CC) -c $(CFLAGS) -UCOMPLEX -DDOUBLE $< -o $(@F)
  17. qpotf2_U.$(SUFFIX) : potf2_U.c
  18. $(CC) -c $(CFLAGS) -UCOMPLEX -DXDOUBLE $< -o $(@F)
  19. qpotf2_L.$(SUFFIX) : potf2_L.c
  20. $(CC) -c $(CFLAGS) -UCOMPLEX -DXDOUBLE $< -o $(@F)
  21. cpotf2_U.$(SUFFIX) : zpotf2_U.c
  22. $(CC) -c $(CFLAGS) -DCOMPLEX -UDOUBLE $< -o $(@F)
  23. cpotf2_L.$(SUFFIX) : zpotf2_L.c
  24. $(CC) -c $(CFLAGS) -DCOMPLEX -UDOUBLE $< -o $(@F)
  25. zpotf2_U.$(SUFFIX) : zpotf2_U.c
  26. $(CC) -c $(CFLAGS) -DCOMPLEX -DDOUBLE $< -o $(@F)
  27. zpotf2_L.$(SUFFIX) : zpotf2_L.c
  28. $(CC) -c $(CFLAGS) -DCOMPLEX -DDOUBLE $< -o $(@F)
  29. xpotf2_U.$(SUFFIX) : zpotf2_U.c
  30. $(CC) -c $(CFLAGS) -DCOMPLEX -DXDOUBLE $< -o $(@F)
  31. xpotf2_L.$(SUFFIX) : zpotf2_L.c
  32. $(CC) -c $(CFLAGS) -DCOMPLEX -DXDOUBLE $< -o $(@F)
  33. spotf2_U.$(PSUFFIX) : potf2_U.c
  34. $(CC) -c $(PFLAGS) -UCOMPLEX -UDOUBLE $< -o $(@F)
  35. spotf2_L.$(PSUFFIX) : potf2_L.c
  36. $(CC) -c $(PFLAGS) -UCOMPLEX -UDOUBLE $< -o $(@F)
  37. dpotf2_U.$(PSUFFIX) : potf2_U.c
  38. $(CC) -c $(PFLAGS) -UCOMPLEX -DDOUBLE $< -o $(@F)
  39. dpotf2_L.$(PSUFFIX) : potf2_L.c
  40. $(CC) -c $(PFLAGS) -UCOMPLEX -DDOUBLE $< -o $(@F)
  41. qpotf2_U.$(PSUFFIX) : potf2_U.c
  42. $(CC) -c $(PFLAGS) -UCOMPLEX -DXDOUBLE $< -o $(@F)
  43. qpotf2_L.$(PSUFFIX) : potf2_L.c
  44. $(CC) -c $(PFLAGS) -UCOMPLEX -DXDOUBLE $< -o $(@F)
  45. cpotf2_U.$(PSUFFIX) : zpotf2_U.c
  46. $(CC) -c $(PFLAGS) -DCOMPLEX -UDOUBLE $< -o $(@F)
  47. cpotf2_L.$(PSUFFIX) : zpotf2_L.c
  48. $(CC) -c $(PFLAGS) -DCOMPLEX -UDOUBLE $< -o $(@F)
  49. zpotf2_U.$(PSUFFIX) : zpotf2_U.c
  50. $(CC) -c $(PFLAGS) -DCOMPLEX -DDOUBLE $< -o $(@F)
  51. zpotf2_L.$(PSUFFIX) : zpotf2_L.c
  52. $(CC) -c $(PFLAGS) -DCOMPLEX -DDOUBLE $< -o $(@F)
  53. xpotf2_U.$(PSUFFIX) : zpotf2_U.c
  54. $(CC) -c $(PFLAGS) -DCOMPLEX -DXDOUBLE $< -o $(@F)
  55. xpotf2_L.$(PSUFFIX) : zpotf2_L.c
  56. $(CC) -c $(PFLAGS) -DCOMPLEX -DXDOUBLE $< -o $(@F)
  57. include ../../Makefile.tail