init ems server code
This commit is contained in:
13
plat/pal/Makefile
Normal file
13
plat/pal/Makefile
Normal file
@@ -0,0 +1,13 @@
|
||||
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)
|
||||
|
||||
Reference in New Issue
Block a user