Debufs on fstab, go back to tty login to have job control, prepare target makefile for multiple progs

This commit is contained in:
Ciro Santilli
2017-05-20 07:45:37 +01:00
parent f367ffc6cf
commit 3cb4d0bf28
6 changed files with 24 additions and 5 deletions

View File

@@ -1,9 +1,16 @@
CC = gcc
.PHONY: clean
ins_rm_mod: ins_rm_mod.c
CC ?= gcc
IN_EXT ?= .c
OUT_EXT ?= .out
OUTS := $(addsuffix $(OUT_EXT), $(basename $(wildcard *$(IN_EXT))))
all: $(OUTS)
%$(OUT_EXT): %$(IN_EXT)
$(CC) -o '$@' '$<'
clean:
rm ins_rm_mod
rm -f *'$(OUT_EXT)'

Binary file not shown.