The given language is a non-deterministic Context free language, so we can make a N-PDA(Non-Deterministic PDA) for the given language.(A deterministic push down automata will not be possible).
I tried to make one, hope it helps.

If we transition to state 1 it will accept the strings of type $a^{n}b^{n}c^{m}$
It we transition to state 3 it will accept the strings of type $a^{m}b^{n}c^{n}$
As transition towards 1 or 3 is not deterministic therefore it is a non-deterministic PDA.