Windows NT 4.0 source code leak
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.
 
 
 
 
 
 

47 lines
894 B

#
# Create a Win32 application
#
# Things to know about:
#
# Don't put spaces around '=' in assignments as BUILD
# will GP fault
#
# Don't use macros in here. BUILD can't cope
#
#
MAJORCOMP=windows
MINORCOMP=PlaySnd
# Define the name and type of the application
TARGETNAME=PlaySnd
TARGETTYPE=PROGRAM
UMTYPE=windows
# Define where APP.EXE will go.
TARGETPATH=..\obj
# Define the path to search for include files
INCLUDES=\nt\public\sdk\inc;\nt\public\sdk\inc\crt
# list each C and RC source file
SOURCES=PlaySnd.c \
playsnd.rc \
init.c \
file.c \
sound.c \
res.c \
about.c \
help.c \
debug.c
# List any libraries not included by WIN32LIBS in MAKEFILE.DEF
TARGETLIBS=\nt\public\sdk\lib\*\winmm.lib \
\nt\public\sdk\lib\*\comdlg32.lib