File: makefile.g95

package info (click to toggle)
kicad 0.0.20060829-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 56,544 kB
  • ctags: 9,194
  • sloc: cpp: 88,990; ansic: 4,790; makefile: 88; sh: 39
file content (35 lines) | stat: -rw-r--r-- 698 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# makefile pour cvpcb (mingw)
OBJSUFF = o

TARGET=cvpcb

WXDIR = $(WXWIN)

all: $(TARGET).exe

include makefile.include
include ../libs.win


$(TARGET).exe: $(OBJECTS) $(TARGET)_resources.o\
		$(EDALIBS) $(LIBVIEWER3D) makefile.g95
	$(CXX) $(ALL_LDFLAGS) -o $(TARGET).exe\
		$(OBJECTS) $(LIBVIEWER3D) $(TARGET)_resources.o $(EDALIBS) $(SYSWXLIB)
		

install:$(KICAD_BIN)/$(TARGET).exe
	cp $(TARGET).exe $(KICAD_BIN)

$(KICAD_BIN)/$(TARGET).exe:$(TARGET).exe

$(TARGET)_resources.o:  $(TARGET).rc
	$(RESCOMP) $(RCINPUTSWITCH) $(TARGET).rc $(RCOUTPUTSWITCH) $(TARGET)_resources.o $(RESFLAGS)


clean:
	rm -f *.o
	rm -f *.rsc
	rm -f *.res
	rm -f *.exe
	rm -f *.bak