home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip: Windows 2000 Professional Resource Kit
/
W2KPRK.iso
/
apps
/
posix
/
source
/
EXAMPLES
/
LD.MK
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Makefile
|
1999-11-17
|
229 b
|
11 lines
SDK = //C/nt/public/sdk
INC = $(SDK)/inc
CCFLAGS = $(CFLAGS) -I $(INC)/posix -I $(INC)/crt
LDFLAGS = -L $(SDK)/lib/i386
test: test.o test.a
ld -o test $(LDFLAGS) test.o test.a
test.o: test.c
cc -c $(CCFLAGS) test.c