home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / muleos2.zip / omake.zip / makefile < prev    next >
Makefile  |  1994-02-16  |  392b  |  26 lines

  1. dot = .
  2. .SUFFIXES: .c .o .s
  3. .c.o:
  4.     $(CC) $(CFLAGS) -c $<
  5. CD=cd
  6. MAKE=make
  7. CC = gcc
  8. LD = ld
  9. CFLAGS= -g
  10.  
  11. obj=    mixgne.o
  12.  
  13. all: mixgen.exe newsconv.exe
  14.  
  15. mixgen.exe: mixgen.c
  16.     $(CC) $(CFLAGS) mixgen.c -o mixgen.exe
  17.  
  18. newsconv.exe: newsconv.c
  19.     $(CC) $(CFLAGS) newsconv.c -o newsconv.exe
  20.  
  21. clean:
  22.     -del *~ >nul 2>nul
  23.     -del *.ref >nul 2>nul
  24.     -del dummy >nul 2>nul
  25.     rm -fr mix
  26.