File: Makefile.winxp-cygwin

package info (click to toggle)
king-probe 2.16.160404%2Bgit20180613.a09b012-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 788 kB
  • sloc: ansic: 11,942; makefile: 40; python: 18
file content (29 lines) | stat: -rw-r--r-- 1,271 bytes parent folder | download | duplicates (4)
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
# probe Makefile hacked by dcr 060902
OBJLIST = dots.o abin.o readPDBrecs.o geom3d.o utility.o select.o \
	 parse.o atomprops.o stdconntable.o autobondrot.o

# I don't know what .c.o does, but it then invokes the probe:  line
#  which has the unknown $@ --- so need more knowledge about make !!!!
.c.o:
	cc -c -mno-cygwin $*.c

probe: probe.o $(OBJLIST)
	cc -o $@ probe.o -mno-cygwin $(OBJLIST)

clean:
	rm -f *.o

# DO NOT DELETE THIS COMMENT LINE -- make depend uses it
# Dependencies
abin.o:         ./abin.h ./geom3d.h ./utility.h abin.c
atomprops.o:    ./atomprops.h atomprops.c
autobondrot.o:  ./abin.h ./autobondrot.h ./geom3d.h ./readPDBrecs.h ./utility.h autobondrot.c
dots.o:         ./dots.h ./geom3d.h dots.c
geom3d.o:       ./geom3d.h geom3d.c
parse.o:        ./parse.h ./utility.h parse.c
probe.o:        ./abin.h ./atomprops.h ./autobondrot.h ./dots.h ./geom3d.h ./parse.h ./probe.h ./readPDBrecs.h ./select.h ./stdconntable.h ./utility.h probe.c
readPDBrecs.o:  ./geom3d.h ./readPDBrecs.h ./utility.h readPDBrecs.c
select.o:       ./abin.h ./atomprops.h ./geom3d.h ./parse.h ./select.h ./stdconntable.h ./utility.h select.c
stdconntable.o: ./stdconntable.h stdconntable.c
utility.o:      utility.c
# DO NOT DELETE THIS COMMENT LINE -- make depend uses it