home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / GCC / GERLIB_USR08B.LHA / gerlib / examples / test / mathtest / makefile next >
Encoding:
Makefile  |  1993-12-12  |  157 b   |  8 lines

  1. all: TestMath.o TestMath
  2.  
  3. TestMath.o: TestMath.c
  4.     gcc -O2 TestMath.c -c -fomit-frame-pointer
  5.  
  6. TestMath: TestMath.o
  7.     gcc TestMath.o -o TestMath -lger -lamiga
  8.