Import NMEAP 0.3 library.
[bertos.git] / bertos / net / nmeap / tst / tst.mak
1 INCLUDES= ..\inc\nmeap.h ..\inc\nmeap_def.h\r
2 CSRC    = nmeap01.c\r
3 LIBNAME = ..\lib\libnmeap.lib\r
4 \r
5 # build everything\r
6 all : test1.exe test2.exe test3.exe wingps.exe \r
7 \r
8 test1.exe : test1.c $(LIBNAME)\r
9         cl /DNDEBUG /c /I..\inc test1.c\r
10         link /OUT:test1.exe test1.obj $(LIBNAME) \r
11         \r
12 test2.exe : test2.c $(LIBNAME)\r
13         cl /DNDEBUG /c /I..\inc test2.c\r
14         link /OUT:test2.exe test2.obj $(LIBNAME)\r
15         \r
16 test3.exe : test3.c $(LIBNAME)\r
17         cl /DNDEBUG /c /I..\inc test3.c\r
18         link /OUT:test3.exe test3.obj $(LIBNAME)\r
19         \r
20 wingps.exe : wingps.c $(LIBNAME)\r
21         cl /DNDEBUG /c /I..\inc wingps.c\r
22         link /OUT:wingps.exe wingps.obj $(LIBNAME)\r
23 \r
24 # erase all intermediate and output files\r
25 clean :\r
26         -erase *.obj\r
27         -erase *.exe\r
28 \r
29 \r