first commit
This commit is contained in:
15
co/Makefile
Normal file
15
co/Makefile
Normal file
@@ -0,0 +1,15 @@
|
||||
CC=tcc
|
||||
CFLAGS= -c -Wall -g
|
||||
SRC:=$(wildcard *.c)
|
||||
OBJ:=$(SRC:.c=.o)
|
||||
|
||||
all: co
|
||||
|
||||
clean:
|
||||
rm -f $(OBJ)
|
||||
|
||||
%.o: %.c
|
||||
$(CC) $(CFLAGS) -o $@ $<
|
||||
|
||||
co: $(OBJ)
|
||||
|
||||
Reference in New Issue
Block a user