Files
svc.ems/plat/pal/Makefile
2024-09-27 15:39:34 +08:00

14 lines
175 B
Makefile

cc = gcc
CFLAG = -g -Wall -c
PAL_OBJ = rm.o
PAL_LIB = lib/libpal.a
all: $(PAL_OBJ)
ar -r $(PAL_LIB) $(PAL_OBJ)
rm.o: rm.c
$(cc) $(CFLAG) $<
clean:
rm -rf *.o $(PAL_LIB)