Ignore:
Timestamp:
Apr 18, 2009, 12:09:06 PM (17 years ago)
Author:
Herwig Bauernfeind
Message:

Alex Taylors fixes for Tickets #79/#80/#81/#82/#83/#84

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/smbpdr-1.0/makefile

    r175 r177  
    1 # Makefile for VAC (doesn't work at the moment)
    21BASE=SMB
     2DEF_PORTNAME=SMB
    33
    44ICCOPTS=-Gd-e- -Sp1 -Ss+ -Ms -C+ -Fo$@ -Dcdecl= -D_cdecl= -Rn -O -Wpro -Q+ -Yp+ -Ss+
     
    1010!ENDIF
    1111
    12 $(BASE).PDR:                    $(BASE).OBJ \
     12$(BASE).PDR:                    $(BASE).DLL
     13        copy $(BASE).DLL $(BASE).PDR
     14        del $(BASE).DLL
     15
     16$(BASE).DLL:                    $(BASE).OBJ \
    1317                                $(BASE).RES
    1418        ILINK $(LINKOPTS) @<<
    1519$(BASE)
    16 $(BASE).PDR
     20$(BASE).DLL
    1721$(BASE)
    1822OS2386
    1923$(BASE)
    2024<<
    21         RC $(BASE).RES $(BASE).PDR
     25        RC $(BASE).RES $(BASE).DLL
     26        ea2 -e DEFAULT_PORT=$(DEF_PORTNAME) $(BASE).DLL
    2227
    2328$(BASE).RES:                    $(BASE).RC \
     
    2833                                $(BASE).H
    2934        ICC $(ICCOPTS) $(BASE).C
     35
     36clean:
     37        if exist $(BASE).PDR del $(BASE).PDR
     38        if exist $(BASE).DLL del $(BASE).DLL
     39        if exist $(BASE).SYM del $(BASE).SYM
     40        if exist $(BASE).MAP del $(BASE).MAP
     41        if exist $(BASE).RES del $(BASE).RES
     42        if exist $(BASE).OBJ del $(BASE).OBJ
Note: See TracChangeset for help on using the changeset viewer.