Re-namespacing a bit to clear out some fairly old stuff from the top level
This commit is contained in:
21
oldstuff/PracticingC/Makefile
Normal file
21
oldstuff/PracticingC/Makefile
Normal file
@@ -0,0 +1,21 @@
|
||||
CD = cd
|
||||
RM = rm -v
|
||||
|
||||
CC := gcc
|
||||
CFLAGS := -std=c99 -Wall -g
|
||||
|
||||
ALL_TARGETS := $(patsubst %.c,%,$(wildcard *.c))
|
||||
|
||||
export CD RM CFLAGS
|
||||
|
||||
|
||||
all: $(ALL_TARGETS)
|
||||
$(CD) gowrikumar && $(MAKE)
|
||||
$(CD) gdbtut && $(MAKE)
|
||||
|
||||
clean:
|
||||
$(CD) gowrikumar && $(MAKE) clean
|
||||
$(CD) gdbtut && $(MAKE) clean
|
||||
|
||||
|
||||
.PHONY: all clean
|
Reference in New Issue
Block a user