home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / mime64.zip / Makefile next >
Makefile  |  1994-11-05  |  175b  |  11 lines

  1. CC=gcc
  2.  
  3. CFLAGS= -O2 -fexpensive-optimizations -Zomf -Zmtd
  4. LDFLAGS=-s
  5. LIBS=-lemxio -lwrap
  6.  
  7. all: mime64
  8.  
  9. mime64: mime64.c
  10.     $(CC) $(CFLAGS) -o $@ $(LDFLAGS) $< $(LIBS)
  11.