Makefile: Simplify as much as possible
[assignment-template.git] / Makefile
1 # Copyright (C) 2012-2013  W. Trevor King
2 #
3 # This program is free software: you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation, either version 3 of the License, or
6 # (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
16 all: hello_world goodbye_world
17
18 hello_world: hello_world.c
19         gcc -o hello_world hello_world.c
20
21 goodbye_world: goodbye_world.cpp
22         g++ -o goodbye_world goodbye_world.cpp
23
24 run: hello_world goodbye_world
25         ./hello_world
26         ./goodbye_world
27
28 clean:
29         rm -f hello_world goodbye_world