home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / programs / system / idleled / makefile < prev    next >
Makefile  |  1995-02-27  |  257b  |  21 lines

  1.  
  2. #
  3. # Bmake compatible makefile for the idle led program
  4. #
  5. # Aztec 5.2a with optimisation enabled
  6. #
  7.  
  8. SRC= idle_led.c
  9. OBJ= idle_led.o
  10.  
  11. TARGET=    idle_led
  12.  
  13. %.o: %.a
  14.     a68k -q -d $<
  15.  
  16. %.o: %.c
  17.     cc -sob -wlo -o $@ $<
  18.  
  19. $(TARGET):    $(OBJ) 
  20.         ln -o $(TARGET) $(OBJ) -lc
  21.