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.
16 lines
416 B
16 lines
416 B
!include "..\..\mfc\mfc\samples\ntsample.mak"
|
|
|
|
OBJS = symedit.obj symedit.res
|
|
|
|
all: symedit.exe
|
|
|
|
symedit.exe: $(OBJS)
|
|
$(LINK) $CONFLAGS) -out:symedit.exe $(OBJS) $(CONLIBS)
|
|
|
|
symedit.res: symedit.rc strings.i
|
|
|
|
symedit.obj: symedit.c ..\include\symcvt.h ..\include\cv.h \
|
|
..\include\cofftocv.h ..\include\symtocv.h strings.h
|
|
|
|
strings.i:
|
|
$(CC) -E -DRESOURCES strings.c | findstr -v /C:"#" > strings.i
|