home *** CD-ROM | disk | FTP | other *** search
/ gondwana.ecr.mu.oz.au/pub/ / Graphics.tar / Graphics / fermiVogle.tar.Z / fermiVogle.tar / devel / drivers / Makefile < prev    next >
Makefile  |  1996-02-07  |  352b  |  23 lines

  1. #
  2. # if your system is running 4.2 or is a sun running
  3. # a sun os before 4.0 you need to add -DBSD to CFLAGS
  4. #
  5. MCFLAGS = -g -fsingle -f68881 /usr/lib/f68881/libm.il -DSUN_4_1_1
  6.  
  7. HDRS= ../src/vogle.h
  8.  
  9. DOBJS = sun.o ps.o hpdxy.o tek.o
  10.  
  11. CFLAGS= -I../src $(MCFLAGS)
  12.  
  13. all:    $(DOBJS)
  14.  
  15. $(DOBJS): $(HDRS)
  16.  
  17. clean:
  18.     rm -f core $(DOBJS)
  19.  
  20. clobber:
  21.     rm -f core *.o
  22.     
  23.