home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 May
/
W2KPRK.iso
/
apps
/
posix
/
source
/
EXAMPLES
/
LD.MK
< prev
next >
Wrap
Makefile
|
1999-11-17
|
229b
|
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