# # ucsim cmd.src/Makefile # # (c) Drotos Daniel, Talker Bt. 1997 # STARTYEAR = 1997 SHELL = /bin/sh CXX = @CXX@ CPP = @CPP@ CXXCPP = @CXXCPP@ RANLIB = @RANLIB@ INSTALL = @INSTALL@ LEX = @LEX@ YACC = @YACC@ BISON_PLUS_PLUS = @BISON_PLUS_PLUS@ PRJDIR = .. DEFS = $(subs -DHAVE_CONFIG_H,,@DEFS@) CPPFLAGS = @CPPFLAGS@ -I. -I$(PRJDIR) \ -I$(PRJDIR)/sim.src -I$(PRJDIR)/gui.src CFLAGS = @CFLAGS@ -Wall CXXFLAGS = @CXXFLAGS@ -Wall M_OR_MM = @M_OR_MM@ prefix = @prefix@ exec_prefix = @exec_prefix@ bindir = @bindir@ libdir = @libdir@ datadir = @datadir@ includedir = @includedir@ mandir = @mandir@ man1dir = $(mandir)/man1 man2dir = $(mandir)/man2 infodir = @infodir@ srcdir = @srcdir@ OBJECTS = cmdset.o command.o newcmd.o cmdutil.o syntax.o \ get.o set.o timer.o bp.o info.o show.o cmdgui.o cmdconf.o \ cmduc.o cmdstat.o cmdmem.o \ cmdpars.o cmdlex.o # Compiling entire program or any subproject # ------------------------------------------ all: checkconf cmdlib cmd.src: all # Compiling and installing everything and runing test # --------------------------------------------------- install: all installdirs # Deleting all the installed files # -------------------------------- uninstall: # Performing self-test # -------------------- check: test: # Performing installation test # ---------------------------- installcheck: # Creating installation directories # --------------------------------- installdirs: # Creating dependencies # --------------------- dep: Makefile.dep Makefile.dep: *.cc *.h $(CXXCPP) $(CPPFLAGS) $(M_OR_MM) *.cc >Makefile.dep include Makefile.dep include clean.mk cmdpars.cc: cmdpars.y cmdlex.cc: cmdlex.l cmdpars.h # My rules # -------- cmdlib: $(PRJDIR)/libcmd.a $(PRJDIR)/libcmd.a: $(OBJECTS) ar -rcu $*.a $(OBJECTS) $(RANLIB) $*.a .cc.o: $(CXX) $(CXXFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c $< -o $@ #.y.cc: # rm -f $*.cc $*.h # $(YACC) -d $< # mv y.tab.c $*.cc # mv y.tab.h $*.h .y.cc: rm -f $*.cc $*.h $(BISON_PLUS_PLUS) -d -o $*.cc $< .l.cc: rm -f $*.cc $(LEX) --c++ -o $*.cc $< # Remaking configuration # ---------------------- checkconf: @if [ -f $(PRJDIR)/devel ]; then\ $(MAKE) -f conf.mk srcdir="$(srcdir)" PRJDIR="$(PRJDIR)" freshconf;\ fi # End of cmd.src/Makefile.in