Makefile 171 B

12345678
  1. APPNAME=minichannel
  2. build:
  3. mkdir -p ./target/
  4. g++ ./src/*.cpp -o ./target/$(APPNAME) -Wall -lncurses -lpanel -lmenu
  5. run: build
  6. ./target/$(APPNAME) 2> ./target/stdout