home *** CD-ROM | disk | FTP | other *** search
/ The AGA Experience 2 / agavol2.iso / software / utilities / wb_tools / executive_v1.30 / sysinfo.lzx / examples / test / Makefile < prev    next >
Makefile  |  2008-03-13  |  446b  |  33 lines

  1. #
  2. # Makefile for SysInfo.library/test
  3. #
  4. # This file is public domain.
  5. #
  6. # Author: Petri Nordlund <petrin@megabaud.fi>
  7. #
  8. # $Id: MF.compile 1.3 1995/11/04 18:18:15 petrin Exp petrin $
  9. #
  10.  
  11. CFLAGS = -O
  12.  
  13.  
  14. SHELL = USR:BIN/sh
  15.  
  16. # Source files
  17. SRCS   = test.c
  18.  
  19. # Object files
  20. OBJS   = $(SRCS:.c=.o)
  21.  
  22.  
  23. all : test
  24.  
  25. test : test.o
  26.     gcc $(CFLAGS) -o test $^ -lamiga -lauto -lsysinfo
  27.  
  28. test.o : test.c defs.h
  29.     gcc $(CFLAGS) -c test.c
  30.  
  31. clean:
  32.     -delete test test.o
  33.