From bcc38555ea8da30afd8d0e8314e2ef8d02004a1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20Luka=20=C5=A0ijanec?= Date: Tue, 14 Dec 2021 21:44:53 +0100 Subject: ne glej vsebine tega commita prosim --- inf/liga/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 inf/liga/Makefile (limited to 'inf/liga/Makefile') diff --git a/inf/liga/Makefile b/inf/liga/Makefile new file mode 100644 index 0000000..1dd50ea --- /dev/null +++ b/inf/liga/Makefile @@ -0,0 +1,15 @@ +CFLAGS += -Wextra -Wall -pedantic -g -O0 -finput-charset=UTF-8 -fanalyzer -fextended-identifiers +LDFLAGS += -lm +CC ?= cc +SHELL ?= /bin/sh +cbins := $(subst .c,,$(wildcard *.c)) +asmbins := $(subst .asm,,$(wildcard *.asm)) +default: $(cbins) $(asmbins) +%: %.c + $(CC) $(CFLAGS) $< -o$@ $(LDFLAGS) +%: %.asm + # za zdaj sicer še ni ničesar v zbornem jeziku, mogoče pa bo ... + nasm -f elf $< && ld -m elf_i386 -s -o $@ $@.o +.PHONY: clean +clean: + rm -f $(bins) $(asmbins) *.o -- cgit v1.2.3