diff options
| author | Thomas Ulmer <thomasmulmer02@gmail.com> | 2026-02-23 16:54:28 -0800 |
|---|---|---|
| committer | Thomas Ulmer <thomasmulmer02@gmail.com> | 2026-02-23 16:54:28 -0800 |
| commit | 0960985a5579aa22e4cad1b53e31d988d0815471 (patch) | |
| tree | fb93e4d945dc080cdde550a241a2325ac6492963 /src/vi/ex-070224/libuxre/Makefile | |
| parent | 1e06d782d2a8cdb9fe59e4932999869c95397cbd (diff) | |
add musl and vi
Diffstat (limited to 'src/vi/ex-070224/libuxre/Makefile')
| -rw-r--r-- | src/vi/ex-070224/libuxre/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/vi/ex-070224/libuxre/Makefile b/src/vi/ex-070224/libuxre/Makefile new file mode 100644 index 0000000..46d7320 --- /dev/null +++ b/src/vi/ex-070224/libuxre/Makefile @@ -0,0 +1,12 @@ +CFLAGS = $(COPT) $(RPMCFLAGS) -I. +OBJS = bracket.o _collelem.o _collmult.o regcomp.o regdfa.o regerror.o regexec.o regfree.o regnfa.o regparse.o stubs.o + +.c.o: ; $(CC) $(CFLAGS) -c $< + +all: libuxre.a + +libuxre.a: $(OBJS) + ar cr libuxre.a $(OBJS) + +clean: + rm -f libuxre.a $(OBJS) core |
