diff options
| author | tslil clingman <tslil@posteo.de> | 2021-02-02 19:23:54 -0500 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-08-28 19:37:41 +0100 |
| commit | 40c6b1dafab4de169bac8a799e7953e85061218e (patch) | |
| tree | 99d86e8f90e8aa19b35875ea8ba624c50c467857 /Makefile | |
| parent | 11956b2e940f5e1839efab187d898092e819a766 (diff) | |
TEI interface working!
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,5 +1,3 @@ -STRIP=strip - IDIR=include DEFINES=-DDETERMINISTIC CFLAGS=-O3 -Wall -Wextra -Wpedantic -std=c99 -D_DEFAULT_SOURCE $(DEFINES) -I$(IDIR) @@ -20,16 +18,18 @@ CROSS_STRIP=$(BUILDROOT_DIR)/output/host/bin/arm-linux-strip ctaklm: src/ctaklm.o $(OBJS) $(CC) $(CFLAGS) src/ctaklm.o $(OBJS) -o ctaklm - $(STRIP) ctaklm pptdb: src/pptdb.o $(CTAK_OBJS) $(CC) $(CFLAGS) src/pptdb.o $(CTAK_OBJS) -o pptdb +tei: src/tei.o $(OBJS) + $(CC) $(CFLAGS) src/tei.o $(OBJS) -o tei + clean: - rm -f ctaklm ct1986 pptdb + rm -f ctaklm ct1986 pptdb tei rm -f src/*.o include/*.o -native: clean ctaklm pptdb +native: clean ctaklm pptdb tei $(CROSS_CC): ./resources/do_buildroot.sh $(BUILDROOT_DIR) |
