home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / mkptypes.zip / makefile next >
Makefile  |  1991-02-05  |  430b  |  22 lines

  1. #
  2. # Makefile for mkptypes. Edit the lines below to suit your tastes; the default
  3. # is for my computer (Atari ST running the gcc 1.37); a Unix configuration is
  4. # also provided.
  5.  
  6. #CC = cc
  7. #PROG = mkptypes
  8. #CFLAGS = -O
  9.  
  10. CC = gcc
  11. PROG = mkptypes.ttp
  12. CFLAGS = -mshort -O
  13.  
  14. $(PROG) : mkptypes.c mkptypes.h
  15.     $(CC) $(CFLAGS) -o $(PROG) mkptypes.c
  16.  
  17. clean:
  18.     rm -f mkptypes.o
  19.  
  20. realclean: clean
  21.     rm -f $(PROG) report core
  22.