diff options
author | 2023-02-02 13:39:12 +0100 | |
---|---|---|
committer | 2023-02-02 13:39:12 +0100 | |
commit | a664bda36b9e28d3c2a89075441790b1842337d9 (patch) | |
tree | 795223afbbf82bfca3089f9b0fa91b1a7a196717 | |
parent | 27d489fa56714910d7249abc9f72dcd22cad66da (diff) | |
download | log-a664bda36b9e28d3c2a89075441790b1842337d9.tar.gz log-a664bda36b9e28d3c2a89075441790b1842337d9.zip |
Add target to compile maic.c of test-app
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -23,5 +23,10 @@ all: ${LIBNAME:=.so} ${LIBNAME:=.a} clean: rm -f *.o ${LIBNAME}.* + +# Targets for testing application +main.o: + ${CC} ${CFLAGS} -c $< + test-app: main.o ${OBJ} ${CC} ${LDFLAGS} -o $@ main.o ${OBJ} |