Makefile 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
  4. #
  5. # This program is free software; you can redistribute it and/or modify it under
  6. # the terms of the GNU Library General Public License as published by the Free
  7. # Software Foundation; either version 2 of the License, or (at your option) any
  8. # later version.
  9. #
  10. # This program is distributed in the hope that it will be useful, but WITHOUT
  11. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  12. # FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
  13. # details.
  14. #
  15. # You should have received a copy of the GNU Library General Public License
  16. # along with this program; if not, write to the Free Software Foundation, Inc.,
  17. # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. TESTDIR=../
  19. include $(TESTDIR)/Rules.mak
  20. TARGETS=test_pwd test_pwd_glibc
  21. TARGETS+=test_grp test_grp_glibc
  22. TARGETS+=test_pwd_diff test_grp_diff
  23. all: $(TARGETS)
  24. test_pwd: test_pwd.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(CC)
  25. -@ echo "-------"
  26. -@ echo " "
  27. -@ echo "Compiling vs uClibc: "
  28. -@ echo " "
  29. $(CC) $(CFLAGS) -c $< -o $@.o
  30. $(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
  31. $(STRIPTOOL) -x -R .note -R .comment $@
  32. -./$@ 2>&1 >test_pwd.out
  33. -@ echo " "
  34. test_pwd_glibc: test_pwd.c Makefile
  35. -@ echo "-------"
  36. -@ echo " "
  37. -@ echo "Compiling vs GNU libc: "
  38. -@ echo " "
  39. $(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
  40. $(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
  41. $(STRIPTOOL) -x -R .note -R .comment $@
  42. -./$@ 2>&1 >test_pwd_glibc.out
  43. -@ echo " "
  44. test_grp: test_grp.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(CC)
  45. -@ echo "-------"
  46. -@ echo " "
  47. -@ echo "Compiling vs uClibc: "
  48. -@ echo " "
  49. $(CC) $(CFLAGS) -c $< -o $@.o
  50. $(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
  51. $(STRIPTOOL) -x -R .note -R .comment $@
  52. -./$@ 2>&1 >test_grp.out
  53. -@ echo " "
  54. test_grp_glibc: test_grp.c Makefile
  55. -@ echo "-------"
  56. -@ echo " "
  57. -@ echo "Compiling vs GNU libc: "
  58. -@ echo " "
  59. $(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
  60. $(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
  61. $(STRIPTOOL) -x -R .note -R .comment $@
  62. -./$@ 2>&1 >test_grp_glibc.out
  63. -@ echo " "
  64. test_pwd_diff: test_pwd_glibc test_pwd
  65. -@ echo "-------"
  66. -@ echo " "
  67. -@ echo "Diffing output: "
  68. -@ echo " "
  69. -diff -u test_pwd_glibc.out test_pwd.out
  70. -@ echo " "
  71. test_grp_diff: test_grp_glibc test_grp
  72. -@ echo "-------"
  73. -@ echo " "
  74. -@ echo "Diffing output: "
  75. -@ echo " "
  76. -diff -u test_grp_glibc.out test_grp.out
  77. -@ echo " "
  78. clean:
  79. $(RM) *.[oa] *~ core $(TARGETS) *.out