Files
cmand-yarrp/utils/yrp2warts/Makefile
2019-09-11 15:53:06 -07:00

14 lines
257 B
Makefile

CXX = c++
CFLAGS = -Os --std=gnu++11 -Wall
LIBS = -lscamperfile
DEPS = ipaddress.hpp yarrpfile.hpp
OBJ = yrp2warts.o
%.o: %.cpp $(DEPS)
$(CXX) -c -o $@ $< $(CFLAGS)
yrp2warts: $(OBJ)
$(CXX) -o $@ $^ $(CFLAGS) $(LIBS)
clean:
rm -f yrp2warts yrp2warts.o