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.
26 lines
655 B
26 lines
655 B
#****************************** File Header ******************************\
|
|
# File Name: makefile.inc
|
|
#
|
|
# Copyright (c) 1985-96, Microsoft Corporation
|
|
#
|
|
# Inference rules to build generated header files
|
|
#
|
|
# History:
|
|
# Feb-14-1996 GerardoB Created
|
|
#***************************************************************************/
|
|
cscall.h: ..\cscall.tpl scf.lst
|
|
listmung scf.lst ..\cscall.tpl >cscall.h
|
|
|
|
callback.h: ..\callback.tpl cb.lst
|
|
listmung cb.lst ..\callback.tpl >callback.h
|
|
|
|
scf.lst: ..\scf.lst
|
|
@echo Creating $@ from $**
|
|
$(C_PREPROCESSOR) $** > $@
|
|
|
|
cb.lst: ..\cb.lst
|
|
@echo Creating $@ from $**
|
|
$(C_PREPROCESSOR) $** > $@
|
|
|
|
|
|
|