mirror of
https://github.com/Yet-Another-DreamTeam/quicknote.git
synced 2026-03-13 16:14:39 +00:00
5 lines
84 B
Makefile
5 lines
84 B
Makefile
CC = g++
|
|
CFLAGS = -Wall -O2
|
|
|
|
all:
|
|
$(CC) $(CFLAGS) -o ./bin/quicknote ./src/main.cpp
|