home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / set6x86.zip / Makefile < prev    next >
Makefile  |  1998-01-03  |  582b  |  22 lines

  1. # Makefile for set6x86, a program to get/set Cyrix 6x86 CPU config settings 
  2. # from GNU/Linux, modified for emx for OS/2
  3. CC = gcc
  4. CFLAGS = -O2 -Wall
  5. VERSION=1.5
  6. #############################################################################
  7. _VERSION = -DVERSION=\"$(VERSION)\"
  8.  
  9. all: set6x86 get6x86 6x86_reg
  10.  
  11. set6x86: set6x86.c
  12.     $(CC) $(CFLAGS) $(_VERSION) -o set6x86.exe set6x86.c
  13.  
  14. get6x86: set6x86
  15.     copy set6x86.exe get6x86.exe
  16.  
  17. 6x86_reg: 6x86_reg.c
  18.     $(CC) $(CFLAGS) $(_VERSION) -o 6x86_reg.exe 6x86_reg.c
  19.  
  20. clean:
  21.     del get6x86.exe set6x86.exe 6x86_reg.exe *.o
  22.