diff --git a/src/plugins/cproject.el b/src/plugins/cproject.el index 4083a60..1c8e1ef 100644 --- a/src/plugins/cproject.el +++ b/src/plugins/cproject.el @@ -74,7 +74,6 @@ binding for Kuso IDE C projects section." (defun cplugin/init-menus () "Draw required menu for C mode" (interactive) - (message "SsssssssssSS") (define-key-after global-map [menu-bar file new-proj cproj] (cons "C/C++" (make-sparse-keymap "c-cpp-proj"))) ;; (define-key global-map [menu-bar file new-proj cproj separator2] '("--")) diff --git a/src/templates/c/generic_c/Makefile.tmpl b/src/templates/c/generic_c/Makefile.tmpl index 5aa5ada..7520566 100644 --- a/src/templates/c/generic_c/Makefile.tmpl +++ b/src/templates/c/generic_c/Makefile.tmpl @@ -1,4 +1,3 @@ - CC = gcc CFLAGS = -g -Wall OBJECTS = ::unixname::.o @@ -8,7 +7,7 @@ LIBS = all: ::unixname:: -memdump: $(OBJECTS) +::unixname::: $(OBJECTS) $(CC) -o ::unixname:: $(OBJECTS) $(LDFLAGS) $(LIBS) .SUFFIXES: