c++ Programming Glossary: srcdir
Makefile: no rule to make target http://stackoverflow.com/questions/16084456/makefile-no-rule-to-make-target SRC nohupshd.cpp task.cpp OBJ nohupshd.o task.o OBJDIR obj SRCDIR src DEP src task.h LIBS TARGET nohupshd all TARGET TARGET OBJ.. TARGET OBJ LIBS clean rm f OBJ TARGET Variant 1 OBJDIR .o SRCDIR .cpp CC S SRCDIR o OBJDIR @ CC c SRCDIR o OBJDIR @ Variant 1a.. clean rm f OBJ TARGET Variant 1 OBJDIR .o SRCDIR .cpp CC S SRCDIR o OBJDIR @ CC c SRCDIR o OBJDIR @ Variant 1a .o .cpp CC S SRCDIR..
|