mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
479 B
21 lines
479 B
|
|
all: generic.exe lineedit.dll
|
|
|
|
|
|
generic.res: generic.rc generic.h
|
|
rc -r generic.rc
|
|
|
|
|
|
generic.obj: generic.c generic.h
|
|
cl -c -AM -Gsw -Od -Zpie -DWIN16 generic.c
|
|
|
|
lineedit.lib: ..\debug\lineedit.lib
|
|
copy ..\debug\lineedit.lib > nul
|
|
|
|
lineedit.dll: ..\debug\lineedit.dll
|
|
copy ..\debug\lineedit.dll > nul
|
|
|
|
|
|
generic.exe: generic.obj generic.def generic.res lineedit.lib wattedit.h
|
|
link /NOD/CO generic,,, libw mlibcew lineedit, generic.def
|
|
rc generic.res
|