Posts

Showing posts from March 11, 2019

Campagne d'Atlanta

Image
Guerre de Sécession Campagne d'Atlanta William T. Sherman (à gauche) et Joseph E. Johnston, son adversaire confédéré de la campagne d'Atlanta. Informations générales Date 7 mai - 2 septembre 1864 Lieu Au nord d'Atlanta Issue Victoire de l'Union Belligérants Union États confédérés Commandants James B. McPherson † William Tecumseh Sherman John McAllister Schofield George Henry Thomas Joseph E. Johnston remplacé en juillet par John Bell Hood Leonidas Polk † Forces en présence Division militaire du Mississippi (Armée du Cumberland, Army of the Ohio, Armée du Tennessee : 98 500 – 112 000 hommes Armée du Tennessee : 50 000 - 65 000 hommes Pertes 31 687 dont: 4 423 morts, 22 822 blessés, 4 442 disparus 34 979 dont: 3 044 morts, 18 952 blessés, 12 983 disparus Batailles Sherman contre Johnston  : Bataille de Rocky Face Ridge - Bataille de Resaca - Bataille d'Adairsville - Bataille de New Hop...

Makefile strange variable substitution

Image
2 My Makefile looks like this: %.foo: %.bar cp $< $@ test: *.foo echo *.foo I have 2 files in the directory: a.bar and b.bar . When I run make test it outputs: cp b.bar *.foo echo *.foo *.foo It also creates a file *.foo in the current directory. I am actually expecting to see this: cp a.bar a.foo cp b.bar b.foo echo *.foo a.foo b.foo And also creating a.foo and b.foo . How to achieve that? make share | improve this question asked 5 hours ago Martin Ždila Martin Ždila 155 1 1 5 ...