source: trunk/include/pdwin32.post@ 3030

Last change on this file since 3030 was 3019, checked in by sandervl, 26 years ago

makefile rule changes

File size: 799 bytes
Line 
1# $Id: pdwin32.post,v 1.1 2000-03-04 23:46:24 sandervl Exp $
2#
3# PD-Win32 Project
4#
5# Common dll makefile rules (must be included at the last line of the makefile
6#
7
8!ifndef NODEP
9!include .depend
10!endif
11
12$(PDWIN32_LIB)\$(TARGET).lib: $(TARGET).lib
13 $(CP) $** $@
14
15$(TARGET).LIB: $(TARGET)exp.def
16 $(IMPLIB) $(IMPLIBFLAGS) $@ $(TARGET)exp.def
17 $(CP) $@ $(PDWIN32_LIB)
18
19$(TARGET)exp.def: $(TARGET).def
20 $(IMPDEF) $** $@
21
22$(OBJDIR):
23 @if not exist bin mkdir bin
24 @if not exist $(OBJDIR) mkdir $(OBJDIR)
25
26clean:
27 $(RM) $(OBJDIR)\*.OBJ
28 $(RM) $(OBJDIR)\*.lrf
29 $(RM) *.LIB
30 $(RM) *.dll
31 $(RM) *.res
32 $(RM) *.map
33 $(RM) *.pch
34 $(RM) $(RESOURCES).asm
35 $(RM) $(PDWIN32_LIB)\$(TARGET).LIB
36 $(RM) $(PDWIN32_BIN)\$(TARGET).dll
37 $(RM) $(TARGET)exp.def
Note: See TracBrowser for help on using the repository browser.