Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

shellext/Makefile: don't rebuild PipeUtils.exe on each run

Changeset c97529d7ffa0

Parent 1dccbc9965c3

by Adrian Buehlmann

Changes to one file · Browse files at c97529d7ffa0 Showing diff from parent 1dccbc9965c3 Diff from another changeset...

 
25
26
27
28
 
29
30
31
32
33
 
34
35
36
 
25
26
27
 
28
29
30
31
32
 
33
34
35
36
@@ -25,12 +25,12 @@
 CXXFLAGS+=-D_DEBUG  endif   -all: PipeUtils $(DLLNAME) +all: PipeUtils.exe $(DLLNAME)    $(DLLNAME): $(OBJECTS)   g++ -o $@ $(OBJECTS) $(LDFLAGS)   -PipeUtils: PipeUtils.cpp PipeUtils.h StringUtils.o TortoiseUtils.o +PipeUtils.exe: PipeUtils.cpp PipeUtils.h StringUtils.o TortoiseUtils.o   g++ -o $@ $(CXXFLAGS) -DAPPMAIN $< StringUtils.o TortoiseUtils.o    clean: