home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-07-24 | 232 b | 15 lines |
- CFLAGS=-Wall -g
- LIBRARY=../Library
- CLIENTOBJS=test.o ${LIBRARY}/mydriverUser.o
- LIBS=-lkernload
-
- test: ${CLIENTOBJS}
- cc ${CFLAGS} -o test ${CLIENTOBJS} ${LIBS}
-
- test.o: test.c
- cc ${CFLAGS} -c test.c
-
- clean:
- rm -f *.o
- rm -f test
-