Welcome to mirror list, hosted at ThFree Co, Russian Federation.

makefile « ByteSwap « Compress « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f73a8079780bf80598922ae7cb53b918f45620ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
PROG = Swap.dll
DEF_FILE = ../Codec.def
CFLAGS = $(CFLAGS) -I ../../../
LIBS = $(LIBS) oleaut32.lib

SWAP_OBJS = \
  $O\DllExports.obj \

SWAP_OPT_OBJS = \
  $O\ByteSwap.obj \

OBJS = \
  $O\StdAfx.obj \
  $(SWAP_OBJS) \
  $(SWAP_OPT_OBJS) \
  $O\resource.res

!include "../../../Build.mak"

$(SWAP_OBJS): $(*B).cpp
	$(COMPL)
$(SWAP_OPT_OBJS): $(*B).cpp
	$(COMPL_O2)