diff options
author | jofret | 2006-11-30 17:01:38 +0000 |
---|---|---|
committer | jofret | 2006-11-30 17:01:38 +0000 |
commit | b6d988c8dcc673709e4e2acef2de4d2cbf424caf (patch) | |
tree | e737566cb37981931d610514aa123ad4de04a184 /src/type/Makefile | |
parent | 45524d1950ff4db35fc6c474619b061f4e5a6ff0 (diff) | |
download | scilab2c-b6d988c8dcc673709e4e2acef2de4d2cbf424caf.tar.gz scilab2c-b6d988c8dcc673709e4e2acef2de4d2cbf424caf.tar.bz2 scilab2c-b6d988c8dcc673709e4e2acef2de4d2cbf424caf.zip |
Simple Double complex type.
Diffstat (limited to 'src/type/Makefile')
-rw-r--r-- | src/type/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/type/Makefile b/src/type/Makefile new file mode 100644 index 00000000..8b34532e --- /dev/null +++ b/src/type/Makefile @@ -0,0 +1,32 @@ +## +## -*- makefile -*- +## +## Makefile +## Made by Bruno JOFRET <bruno.jofret@inria.fr> +## +## Started on Thu Nov 30 16:33:40 2006 jofret +## Last update Thu Nov 30 17:52:34 2006 jofret +## +## Copyright INRIA 2006 +## + +NAME = dummy +RM = rm -f +CC = gcc +CFLAGS = -Wall -pedantic + +SRC = doubleComplex.c \ + main.c + +HEADERS = doubleComplex.h + +OBJ = $(SRC:.c=.o) + +all: $(SRC) $(HEADERS) $(OBJ) + $(CC) $(CFLAGS) $(OBJ) -o $(NAME) + +clean: + $(RM) $(OBJ) + +distclean: clean + $(RM) $(NAME)
\ No newline at end of file |