"Fossies" - the Fresh Open Source Software Archive

Member "ncc-2.8/nccnav/Makefile" (14 Sep 2006, 445 Bytes) of package /linux/privat/old/ncc-2.8.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 
    2 CC = g++
    3 LCFLAGS = -Wall -g
    4 CFLAGS = $(LCFLAGS) -c -g
    5 
    6 OBJDIR = ../objdir
    7 
    8 $(OBJDIR)/nccnav: nccnav.C $(OBJDIR)/dbstree.o $(OBJDIR)/inttree.o
    9 	$(CC) -g nccnav.C -I.. -lncurses -o nccnav $(OBJDIR)/dbstree.o $(OBJDIR)/inttree.o
   10 
   11 $(OBJDIR)/dbstree.o: ../dbstree.[Ch]
   12 	$(CC) $(CFLAGS) ../dbstree.C -c
   13 	@mv dbstree.o $(OBJDIR)
   14 
   15 $(OBJDIR)/inttree.o: ../inttree.[Ch]
   16 	$(CC) $(CFLAGS) ../inttree.C -c
   17 	@mv inttree.o $(OBJDIR)
   18 
   19 clean:
   20 	rm -f *.o nccnav