home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / utils / console / svgatext.3 / svgatext / SVGATextMode-1.3 / contrib / vgaset / Makefile < prev    next >
Encoding:
Makefile  |  1996-03-31  |  397 b   |  15 lines

  1. # Makefile for vgaset. Adapted from the original Makefile.bsd for Linux by Koen Gadeyne (kmg@barco.be)
  2.  
  3. # Set HAS_USL_VTS if you are using SRV4 or (reportedly) Linux
  4. HAS_USL_VTS=-DHAS_USL_VTS
  5.  
  6. # set COMMON to the pathname of the x386/common/compile.h header file
  7. CC=gcc
  8. CFLAGS= -O3 -s $(HAS_USL_VTS)
  9.  
  10. vgaset: vgaset.c svga.h
  11.     $(CC) $(CFLAGS) vgaset.c -o vgaset
  12.  
  13. clean:
  14.     rm -f vgaset *~ *.bak *.o
  15.