home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume25 / mrandom / Makefile next >
Encoding:
Makefile  |  1991-12-12  |  267 b   |  16 lines

  1. CFLAGS= -O
  2.  
  3. all: mrtest
  4.  
  5. clean:
  6.     -rm *.o
  7.     -rm mrtest
  8.  
  9. install:; @-echo "just link mrandom.o into your own programs as needed."
  10.  
  11. mrtest: mrandom.h mrandom.o mrtest.c
  12.     cc $(CFLAGS) -o mrtest mrtest.c mrandom.o
  13.  
  14. mrandom.o: mrandom.h mrandom.c
  15.     cc $(CFLAGS) -c mrandom.c
  16.