home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #3 / Amiga Plus CD - 2002 - No. 03.iso / AmigaPlus / Tools / Development / envCPP31 / c++ / syntax / sample.makefile < prev   
Encoding:
Makefile  |  2002-01-01  |  143 b   |  12 lines

  1. # makefile for GNU make
  2.  
  3. EXE = bin/test
  4.  
  5. all : $(EXE) 
  6.  
  7. o/main.o : main.c 
  8.     sc:c/sc nolink main.c 
  9.  
  10. $(EXE) : o/main.o 
  11.     sc:c/sc link o/main.o 
  12.