blob: 7b4269477a4f41fdbf40ba6501e180ea38f406f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
## Process this file with automake to produce Makefile.in.
AUTOMAKE_OPTIONS = foreign
## subdirs are for making distributions only.
SUBDIRS = md time
lib_LIBRARIES = @target_libs@
EXTRA_LIBRARIES = libqt.a
libqt_a_SOURCES = qt.c copyright.h
libqt_a_LIBADD = qtmds.o qtmdc.o
qtmds.o: @qtmds_s@
$(COMPILE) -c @qtmds_s@
mv @qtmds_o@ qtmds.o
qtmdc.o: @qtmdc_c@ @qtmd_h@
$(COMPILE) -c @qtmdc_c@
mv @qtmdc_o@ qtmdc.o
EXTRA_DIST = CHANGES README.MISC README.PORT b.h meas.c stp.c stp.h \
PLUGIN/OPT Makefile.base config
|