diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2024-10-02 11:44:15 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2024-10-02 11:44:15 -0400 |
| commit | 5c89b3615c067c51e0076f5433ccbdbee5022f70 (patch) | |
| tree | 8dbcc06c32aefe2cbdba572138fa181e03149be7 /Makefile | |
| parent | 49751d69498c265cb46f6cce5033367ae39c5e91 (diff) | |
| download | balls-5c89b3615c067c51e0076f5433ccbdbee5022f70.zip | |
refactor
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -2,9 +2,12 @@ CC = g++ CFLAGS = -Wall -pedantic LDFLAGS = -ltbb -lglut -lGLU -lGL -balls: balls.o collision.o +balls: balls.o collision.o geometry.o ${CC} -o $@ $^ ${LDFLAGS} @echo done %.o: %.cpp balls.h - ${CC} -c ${CFLAGS} $<
\ No newline at end of file + ${CC} -c ${CFLAGS} $< + +clean: + rm -f ./*.o balls
\ No newline at end of file |