From ef6a411ce8ff615d65e2be105834c2fdbe557de1 Mon Sep 17 00:00:00 2001 From: johannst Date: Sat, 20 Mar 2021 02:34:01 +0100 Subject: Split common headers in header/src files. --- 02_process_init/Makefile | 17 ++++++++++------- 02_process_init/entry.c | 1 - 2 files changed, 10 insertions(+), 8 deletions(-) (limited to '02_process_init') diff --git a/02_process_init/Makefile b/02_process_init/Makefile index db04941..0b51903 100644 --- a/02_process_init/Makefile +++ b/02_process_init/Makefile @@ -3,14 +3,17 @@ show: entry ./entry 1 2 3 4 -entry: entry.S entry.c - gcc -o $@ \ - -g -O0 \ - -Wall -Wextra \ - -I ../include \ - -nostdlib \ - -static \ +entry: entry.S entry.c ../lib/libcommon.a + gcc -o $@ \ + -g -O0 \ + -Wall -Wextra \ + -I../lib/include \ + -nostdlib \ + -static \ $^ +../lib/libcommon.a: + make -C ../lib + clean: rm -f entry diff --git a/02_process_init/entry.c b/02_process_init/entry.c index 37d5fc8..ca24f77 100644 --- a/02_process_init/entry.c +++ b/02_process_init/entry.c @@ -2,7 +2,6 @@ #include #include -#define MAX_PRINTF_LEN 128 #include #if !defined(__linux__) || !defined(__x86_64__) -- cgit v1.2.3