]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Read program added
authorloizides <loizides@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 17 Apr 2002 07:52:28 +0000 (07:52 +0000)
committerloizides <loizides@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 17 Apr 2002 07:52:28 +0000 (07:52 +0000)
HLT/programs/Makefile

index 29cf7db6e87d931ce6e7e3e9dc4a916ea3119a11..9a0844c5d09594aa81337a5d15435a05d746256a 100644 (file)
@@ -66,16 +66,17 @@ CXXFLAGS = -O2 -Wall -ggdb $(INCLUDES)
 LDFLAGS  = -O2 $(LIBS)
 
 
-PRGS   = runit
+PRGS   = runit read
 
 
 
 all : $(PRGS)
 
-runit : runit.o $(OBJS)
-       $(LD) runit.o $(LDFLAGS) $(OBJS) -o runit
-
+runit : runit.o
+       $(LD) $< $(LDFLAGS) $(OBJS) -o $@
 
+read : read.o
+       $(LD) read.o $(LDFLAGS) $(OBJS) -o read
 
 
 %.o : %.cxx