home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Examples / UNIX / LKSOutOfLineData / User / Makefile next >
Makefile  |  1992-07-24  |  232b  |  15 lines

  1. CFLAGS=-Wall -g
  2. LIBRARY=../Library
  3. CLIENTOBJS=test.o ${LIBRARY}/mydriverUser.o
  4. LIBS=-lkernload
  5.  
  6. test:    ${CLIENTOBJS}
  7.     cc ${CFLAGS} -o test ${CLIENTOBJS} ${LIBS}
  8.     
  9. test.o:    test.c
  10.     cc ${CFLAGS} -c test.c
  11.  
  12. clean:
  13.     rm -f *.o
  14.     rm -f test
  15.