diff options
author | Tomasz Kramkowski <tk@the-tk.com> | 2018-04-20 22:18:45 +0200 |
---|---|---|
committer | Tomasz Kramkowski <tk@the-tk.com> | 2018-04-20 22:18:45 +0200 |
commit | a53677673de504fe050fced7791b45d80e3fe77b (patch) | |
tree | b22047d70b40156bece9489bd58db34f99e91209 /Makefile | |
parent | fd56a839d33d8d33ff4722550f97465db56b379d (diff) | |
download | faqe-a53677673de504fe050fced7791b45d80e3fe77b.tar.gz faqe-a53677673de504fe050fced7791b45d80e3fe77b.tar.xz faqe-a53677673de504fe050fced7791b45d80e3fe77b.zip |
Move linmath.h out of the project and into its own fork.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -5,6 +5,7 @@ PROG := faqe EPRINTF_PATH ?= ../eprintf +LINMATH_PATH ?= ../linmath PKG_CONFIG ?= pkg-config LN ?= ln -sf @@ -20,11 +21,12 @@ all: $(PROG) include assets.mk include $(EPRINTF_PATH)/module.mk +include $(LINMATH_PATH)/module.mk $(PROG): $(OBJ) faqe.o: assets.h -deplinks: $(EPRINTF_FILES) +deplinks: $(EPRINTF_FILES) $(LINMATH_FILES) DEP := $(OBJ:.o=.d) |