home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXTSTEP 3.3 (Developer)
/
NeXT_Developer-3.3.iso
/
NextDeveloper
/
Examples
/
UNIX
/
LKSOutOfLineData
/
User
/
Makefile
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Makefile
|
1995-02-10
|
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