blob: be67256b3d3eff71c33debcb06d51f10512259e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
FLAGS=-ggdb -O0
_PHONY=all
all:jet jet2
jet: Makefile *.cpp
g++ $(FLAGS) jet.cpp -o jet
jet2: Makefile *.cpp
g++ $(FLAGS) jet2.cpp -o jet2 $(shell pkg-config --cflags --libs ncurses)
|