diff options
author | 2025-05-20 19:53:01 +0200 | |
---|---|---|
committer | 2025-05-20 19:53:01 +0200 | |
commit | 7f2339edd8449d79de2dc22fdfaa40658c5a201f (patch) | |
tree | e477516a3f2eac6bd252486833d10148163a262f /Makefile | |
parent | 6613969cd6511acb4f7faf6ab99caa9ee8838a2e (diff) | |
download | tris-7f2339edd8449d79de2dc22fdfaa40658c5a201f.tar.gz tris-7f2339edd8449d79de2dc22fdfaa40658c5a201f.zip |
Add function to draw circle
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -30,6 +30,7 @@ CFLAGS != pkg-config --cflags ${LIBS} LFLAGS != pkg-config --libs ${LIBS} CFLAGS += -DX11 +LFLAGS += -lm ${PROG}: ${OBJ} ${CC} ${OBJ} -o $@ ${LFLAGS} |