diff options
| author | Aldrik Ramaekers <aldrik@mailbox.org> | 2026-01-09 15:28:38 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrik@mailbox.org> | 2026-01-09 15:28:38 +0100 |
| commit | 210404a73706993d197c1290d5a411394e176fbe (patch) | |
| tree | 93c3ea9fc4691ca42f26dd92c6e14627af0b47af /libs/timer_lib/Makefile | |
| parent | a65e876f3277a7d7fca6e5129ac3e200dae2d0dc (diff) | |
remove unused lib files
Diffstat (limited to 'libs/timer_lib/Makefile')
| -rw-r--r-- | libs/timer_lib/Makefile | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/libs/timer_lib/Makefile b/libs/timer_lib/Makefile deleted file mode 100644 index 3edaf73..0000000 --- a/libs/timer_lib/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -SRC = timer.c -OBJ = $(SRC:.c=.o) -OUT = libtimer.a -TST = timertest -TSR = test.c -TOB = $(TSR:.c=.o) - -CFLAGS = -O3 -LDFLAGS = - -default: $(OUT) $(TST) - -.c.o: - gcc $(CFLAGS) -c $< -o $@ - -$(OUT): $(OBJ) - ar rcs $(OUT) $(OBJ) - -$(TST): $(OUT) $(TOB) - gcc $(CFLAGS) $(LDFLAGS) -o $(TST) $(TOB) $(OUT) -lrt - -clean: - rm -f $(OBJ) $(OUT) $(TOB) $(TST) |
