bbf1f0e5cf
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
64 lines
1.2 KiB
Plaintext
64 lines
1.2 KiB
Plaintext
#
|
|
# File: makefile.dos
|
|
# Author: Julian Smart
|
|
# Created: 1993
|
|
# Updated:
|
|
# Copyright: (c) 1993, AIAI, University of Edinburgh
|
|
#
|
|
# "%W% %G%"
|
|
#
|
|
# Makefile : Builds joytest example (DOS).
|
|
# Use FINAL=1 argument to nmake to build final version with no debugging
|
|
# info
|
|
|
|
WXDIR = $(WXWIN)
|
|
|
|
!include $(WXDIR)\src\makemsc.env
|
|
|
|
THISDIR = $(WXDIR)\samples\joytest
|
|
INC=/I$(WXDIR)\include
|
|
|
|
HEADERS = joytest.h
|
|
SOURCES = joytest.$(SRCSUFF)
|
|
OBJECTS = joytest.obj
|
|
|
|
all: joytest.exe
|
|
|
|
wx:
|
|
cd $(WXDIR)\src\msw
|
|
nmake -f makefile.dos
|
|
cd $(THISDIR)
|
|
|
|
wxclean:
|
|
cd $(WXDIR)\src\msw
|
|
nmake -f makefile.dos clean
|
|
cd $(THISDIR)
|
|
|
|
|
|
joytest.exe: $(WXDIR)\src\msw\dummy.obj $(WXLIB) joytest.obj joytest.def joytest.res
|
|
link $(LINKFLAGS) @<<
|
|
$(WXDIR)\src\msw\dummy.obj joytest.obj,
|
|
joytest,
|
|
NUL,
|
|
$(LIBS),
|
|
joytest.def
|
|
;
|
|
<<
|
|
rc -K joytest.res
|
|
|
|
joytest.obj: joytest.h joytest.$(SRCSUFF)
|
|
cl @<<
|
|
$(CPPFLAGS) /c /Tp $*.$(SRCSUFF)
|
|
<<
|
|
|
|
joytest.res : joytest.rc $(WXDIR)\include\wx\msw\wx.rc
|
|
rc -r /i$(WXDIR)\include joytest
|
|
|
|
clean:
|
|
-erase *.obj
|
|
-erase *.exe
|
|
-erase *.res
|
|
-erase *.map
|
|
-erase *.sbr
|
|
-erase *.pdb
|