home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / GCC / GERLIB_USR08B.LHA / gerlib / examples / test / InsertEvent / makefile < prev   
Encoding:
Makefile  |  1993-12-12  |  508 b   |  18 lines

  1. # makefile for DemoSource
  2.  
  3. CC=gccv
  4. CSW=-c
  5. INCS=-Ib:add/baserel/
  6. ASFLAGS +=-c
  7. CFLAGS=-O2 -fomit-frame-pointer -funroll-loops -Wall
  8.  
  9. all: InsertEvent
  10.  
  11. # InsertEvent, can Insert some standard events like MouseMove, Double-Click etc.
  12.  
  13. InsertEvent.o: InsertEvent.cc
  14.     gcc InsertEvent.cc -c -O2 -funroll-loops -fomit-frame-pointer -fbaserel
  15.  
  16. InsertEvent: InsertEvent.o
  17.     gcc -fbaserel insertevent.o  ../../add/baserel/couta.o ../../add/baserel/ownerror.o ../../add/baserel/showrequest.o -o InsertEvent -lger -lamiga
  18.