home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 298.lha / PopInfo_v3.1 / makefile < prev    next >
Makefile  |  1980-12-04  |  300b  |  12 lines

  1. LCFLAGS = -O -j88 -j30
  2. BLDEFIN = define @_exit=@XCEXIT define @exit=@XCEXIT
  3. OBJS = PopInfo.o GetFile.o SimpleRequest.o CheckMemoryForViruses.o
  4. LINK = lib:cback.o lib:_main.o
  5. LIBS = lib:lc.lib
  6.  
  7. .c.o:
  8.     lc $(LCFLAGS) $*.c
  9.  
  10. PopInfo : $(OBJS)
  11.     blink $(BLDEFIN) from $(LINK) $(OBJS) to PopInfo lib $(LIBS)
  12.