1234567891011121314151617181920212223242526272829303132333435 |
- ########################################################################
- #
- # This Makefile should be executed with the Unix 'make' utility.
- #
- # This Makefile assumes that the INFORMIXDIR environment variable
- # has been set.
- #
- ########################################################################
- .SUFFIXES:
- .SUFFIXES: .ec
- RM = rm -f
- ESQL = INFORMIXC=$(CC) esql
- .ec:
- $(ESQL) -g -o $@ $<
- $(RM) $@.c $@.o
- chmod 755 $@
- EC_FILES = \
- asbinary.ec \
- asshape.ec \
- geomfromwkb.ec \
- geomfromshape.ec \
- load_wkb.ec \
- load_shapes.ec
- PROGRAMS = $(EC_FILES:.ec=)
- all: $(PROGRAMS)
- clean:
- -$(RM) $(PROGRAMS)
|