blob: be5c34c9f67bc00e0df1b3767c368e8796b0245e (
plain)
1
2
3
4
5
6
7
8
9
10
|
OBJS = \
main.o
PROGRAM = About
LDFLAGS = -lgui -ldraw -lipc -lcore -lc
DEFINES += -DGIT_COMMIT=\"`git rev-parse --short HEAD`\" -DGIT_BRANCH=\"`git rev-parse --abbrev-ref HEAD`\" -DGIT_CHANGES=\"`git diff-index --quiet HEAD -- && echo "tracked"|| echo "untracked"`\"
include ../../Makefile.common
|