Browse Source

Add crypto to list of application dependencies; "make clean" nukes ebin/erlydtl.app

Evan Miller 16 years ago
parent
commit
8a33fa2d3c
2 changed files with 2 additions and 1 deletions
  1. 1 0
      Makefile
  2. 1 1
      src/erlydtl/erlydtl.app

+ 1 - 0
Makefile

@@ -26,4 +26,5 @@ test:
 	
 clean:
 	rm -fv ebin/*.beam
+	rm -fv ebin/$(APP)
 	rm -fv erl_crash.dump $(PARSER).erl

+ 1 - 1
src/erlydtl/erlydtl.app

@@ -16,7 +16,7 @@
              erlydtl_scanner,
              erlydtl_unittests
             ]},
-  {applications, [kernel, stdlib]},
+  {applications, [kernel, stdlib, crypto]},
   {registered, []}
  ]}.