diff options
| author | Nakidai <nakidai@disroot.org> | 2026-02-19 00:54:17 +0300 |
|---|---|---|
| committer | Nakidai <nakidai@disroot.org> | 2026-02-19 00:54:17 +0300 |
| commit | 18375860d92de2fa3a58defee0e099f777fd3d30 (patch) | |
| tree | 1bba58e4aa0c7aef6cd9cc56556965d486d3f02e /src/portab/build.mk | |
| parent | e4fcf7471a1319fee99d68de729aaacfeb044d01 (diff) | |
| download | ngircd-master.tar.gz ngircd-master.zip | |
Now build system will handle header file changes correctly as well
Diffstat (limited to 'src/portab/build.mk')
| -rw-r--r-- | src/portab/build.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/portab/build.mk b/src/portab/build.mk index a184ead2..5e87a165 100644 --- a/src/portab/build.mk +++ b/src/portab/build.mk @@ -7,5 +7,8 @@ OBJS.portab += src/portab/strtok_r.o OBJS.portab += src/portab/vsnprintf.o OBJS.portab += src/portab/waitpid.o +DEPS := ${OBJS.portab:.o=.d} +-include ${DEPS} + src/portab/libngportab.a: ${OBJS.portab} ar rcs src/portab/libngportab.a ${OBJS.portab} |