~ubuntu-branches/ubuntu/edgy/psi/edgy

« back to all changes in this revision

Viewing changes to src/tools/idle/win32/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Lucas Nussbaum
  • Date: 2006-03-28 11:11:02 UTC
  • mfrom: (2.1.2 etch)
  • Revision ID: james.westby@ubuntu.com-20060328111102-v1diqpbwqr4yijoy
Tags: 0.10-2build1
Manual sync from Debian. No Ubuntu-specific changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SOURCES = idleui.cpp
 
2
DLL_NAME = idleui.dll
 
3
DEF_NAME = idleui.def
 
4
 
 
5
all: $(DLL_NAME)
 
6
 
 
7
$(DLL_NAME): $(SOURCES)
 
8
 cl /nologo /MD $(SOURCES) /link /def:$(DEF_NAME) user32.lib kernel32.lib /dll /out:$(DLL_NAME)
 
9