Download this file

Makefile    12 lines (8 with data), 209 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
PROGS = trbinc
all: $(PROGS)
TRBINCOBJS = trbinc.o
trbinc: trbinc.o
$(CXX) -o trbinc trbinc.o $(LIBRECOLL)
trbinc.o: trbinc.cc
$(CXX) $(ALL_CXXFLAGS) -c -o trbinc.o trbinc.cc
include ../utils/utmkdefs.mk