home *** CD-ROM | disk | FTP | other *** search
/ MegaDoom Adventures / PMWMEGADOOM.iso / doom / creators / deu52gcc / src / contrib / bcc2grx / chr / makefile < prev    next >
Makefile  |  1993-06-11  |  428b  |  24 lines

  1. # This makefile is set up for Borland make 3.0/3.6
  2. # Uncomment the following line for use with gnuish make 3.58 / ndmake 4.5
  3. #.SUFFIXES: .chr .o
  4.  
  5. .chr.o:
  6.     go32 bin2s $*.chr _$*_font $*.s
  7.     gcc -c $*.s
  8.     del $*.s
  9.  
  10. OBJS = bold.o euro.o goth.o lcom.o litt.o sans.o scri.o simp.o trip.o tscr.o
  11.  
  12. all: bin2s $(OBJS)
  13.  
  14. clean:
  15.     -del bin2s
  16.     -del *.s
  17.     -del *.o
  18.  
  19. cleanall: clean
  20.  
  21. bin2s: bin2s.c
  22.     gcc -o bin2s bin2s.c
  23.  
  24.