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 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
#####################################################
# Makefile for grconvert #
#####################################################
# You should not change anything here. #
# Please read INSTALL file in the upper directory #
#####################################################
TOP=..
include $(TOP)/Make.conf
.SUFFIXES : .c $(O)
PROG = grconvert$(EXE)
SRCS = grconvert.c defaults.c readbin.c writeasc.c util.c
OBJS = grconvert$(O) defaults$(O) readbin$(O) writeasc$(O) util$(O)
CFLAGS = $(CFLAGS0) -I$(TOP) -I.
LIBS = $(XDR_LIB) $(NOGUI_LIBS)
all : $(PROG)
$(PROG) : $(OBJS)
$(CC) -o $@ $(OBJS) $(LIBS)
$(OBJS) : grconvert.h
tests : dummy
links : $(PROG)
$(MKINSTALLDIRS) $(PREFIX)/bin
cd $(PREFIX)/bin; $(RM) $(PROG); $(LN_S) $(GR_HOME)/bin/$(PROG) $(PROG)
clean :
$(RM) $(OBJS)
distclean :
$(RM) $(PROG) $(OBJS)
devclean :
$(RM) $(PROG) $(OBJS)
install : $(PROG)
$(MKINSTALLDIRS) $(GR_HOME)/bin
$(INSTALL_PROGRAM) -s $(PROG) $(GR_HOME)/bin/$(PROG)
dummy :
|